nixos/home/scripts/default.nix
Torjus Håkestad 8ab6181448
Some checks failed
pre-commit / pre-commit (push) Failing after 17s
Improve hyprlock stuff
2024-06-10 02:26:51 +02:00

18 lines
369 B
Nix

{ pkgs, config, ... }: {
imports = [
./lockhelper.nix
];
home.file.".local/bin/hl-no-opacity" = {
source = ./hl-no-opacity.sh;
executable = true;
};
home.file.".local/bin/rofi-launcher" = {
source = ./rofi-launcher.sh;
executable = true;
};
home.file.".local/bin/randomwp" = {
source = ./randomwp.sh;
executable = true;
};
}