feat: add more scripts
Some checks failed
CI / fmt (push) Failing after 2s
CI / check (push) Failing after 2s

This commit is contained in:
Nickolaj Jepsen 2026-01-22 23:12:42 +01:00
parent cd289da742
commit 575db8e773
7 changed files with 99 additions and 9 deletions

View file

@ -23,14 +23,41 @@ in {
systemd # for bootctl and systemctl
];
})
(makeScript {
path = ./port-kill.bash;
runtimeInputs = with pkgs; [
lsof
procps
coreutils
];
})
(makeScript {
path = ./ssh-select.bash;
runtimeInputs = with pkgs; [
fzf
openssh
gawk
gnused
coreutils
];
})
(makeScript {
path = ./kctx.bash;
runtimeInputs = with pkgs; [
kubectl
fzf
];
})
]
++ lib.optional config.fireproof.desktop.enable (makeScript {
path = ./screenshot.bash;
runtimeInputs = with pkgs; [
slurp
grim
satty
wl-clipboard
];
});
++ lib.optionals config.fireproof.desktop.enable [
(makeScript {
path = ./screenshot.bash;
runtimeInputs = with pkgs; [
slurp
grim
satty
wl-clipboard
];
})
];
}