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:
@ -1,7 +1,6 @@
|
|||||||
{pkgs, ...}: {
|
{pkgs, ...}: {
|
||||||
shell = {
|
shell = {
|
||||||
fish.enable = true;
|
fish.enable = true;
|
||||||
#nushell.enable = true;
|
|
||||||
oh-my-posh.enable = true;
|
oh-my-posh.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -50,28 +49,40 @@
|
|||||||
|
|
||||||
editor = {
|
editor = {
|
||||||
helix.enable = true;
|
helix.enable = true;
|
||||||
# neve.enable = true;
|
|
||||||
zed.enable = true;
|
zed.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
alejandra # nix formatter in rust
|
alejandra # nix formatter in rust
|
||||||
flatpak # flatpak cli
|
|
||||||
trashy # trash cli in rust
|
|
||||||
devenv # programming deps in rust
|
devenv # programming deps in rust
|
||||||
procs # ps in rust
|
|
||||||
ouch # archive manager in runt
|
|
||||||
dust # du in rust
|
dust # du in rust
|
||||||
fend # calc in rust
|
fend # calc in rust
|
||||||
moar # better pager (in go)
|
flatpak # flatpak cli
|
||||||
just # make in rust
|
|
||||||
rbw # bitwarden cli in rust
|
|
||||||
pinentry-qt # pinentry for rbw
|
|
||||||
vial # qmk keyboard configuring app
|
|
||||||
jj-fzf # fuzzy finder jujutsu tui
|
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
|
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
|
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";
|
||||||
|
};
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
@ -624,9 +624,9 @@ in {
|
|||||||
|
|
||||||
Mod+Return repeat=false { spawn "${terminal}"; }
|
Mod+Return repeat=false { spawn "${terminal}"; }
|
||||||
Mod+Space repeat=false { spawn "${launcher}"; }
|
Mod+Space repeat=false { spawn "${launcher}"; }
|
||||||
Mod+Alt+L repeat=false { spawn "${lockscreen}"; }
|
Mod+Ctrl+L repeat=false { spawn "${lockscreen}"; }
|
||||||
Mod+Alt+B repeat=false { spawn "${browser}"; }
|
Mod+Ctrl+B repeat=false { spawn "${browser}"; }
|
||||||
Mod+Alt+V repeat=false { spawn "copyq" "toggle"; }
|
Mod+Ctrl+V repeat=false { spawn "copyq" "toggle"; }
|
||||||
|
|
||||||
Mod+Ctrl+Shift+BracketLeft { quit; }
|
Mod+Ctrl+Shift+BracketLeft { quit; }
|
||||||
Mod+Ctrl+Shift+BracketRight { power-off-monitors; }
|
Mod+Ctrl+Shift+BracketRight { power-off-monitors; }
|
||||||
|
Reference in New Issue
Block a user