hosts/dunamis/users/user/programs.nix: sort home.programs, add script shortcut

modules/home/desktop/niri/default.nix: remove Alt keybinds

Signed-off-by: unexplrd <unexplrd@linerds.us>
This commit is contained in:
2025-03-26 16:27:46 +02:00
parent 453fdd779e
commit d4b568a0d5
2 changed files with 27 additions and 16 deletions

View File

@ -1,7 +1,6 @@
{pkgs, ...}: {
shell = {
fish.enable = true;
#nushell.enable = true;
oh-my-posh.enable = true;
};
@ -50,28 +49,40 @@
editor = {
helix.enable = true;
# neve.enable = true;
zed.enable = true;
};
home.packages = with pkgs; [
alejandra # nix formatter in rust
flatpak # flatpak cli
trashy # trash cli in rust
devenv # programming deps in rust
procs # ps in rust
ouch # archive manager in runt
dust # du in rust
fend # calc in rust
moar # better pager (in go)
just # make in rust
rbw # bitwarden cli in rust
pinentry-qt # pinentry for rbw
vial # qmk keyboard configuring app
flatpak # flatpak cli
jj-fzf # fuzzy finder jujutsu tui
waycheck # check wayland protocols
just # make in rust
ouch # archive manager in runt
overskride # bluetooth gui in rust
pika-backup # borg gui in rust
pinentry-qt # pinentry for rbw
procs # ps in rust
rbw # bitwarden cli in rust
trashy # trash cli in rust
vial # qmk keyboard configuring app
virt-manager # libvirt gui
waycheck # check wayland protocols
];
systemd.user.settings.Manager.DefaultEnvironment.PAGER = "moar";
xdg.desktopEntries = {
uni = {
actions."Copy".exec = "fish -c \"~/.local/bin/uni --copy\"";
categories = ["Utility" "X-Launch" "Network"];
comment = "Select and open or copy URLs from a list.";
exec = "fish -c \"~/.local/bin/uni\"";
icon = "web-browser";
name = "Uni URL Handler";
startupNotify = true;
terminal = false;
type = "Application";
};
};
}