nixos/home/scripts/default.nix

15 lines
329 B
Nix
Raw Normal View History

2024-03-05 21:15:31 +00:00
{ pkgs, config, ... }: {
2024-03-02 22:25:58 +00:00
home.file.".local/bin/hl-no-opacity" = {
2024-03-02 23:03:22 +00:00
source = ./hl-no-opacity.sh;
2024-03-02 22:25:58 +00:00
executable = true;
};
2024-03-03 05:33:49 +00:00
home.file.".local/bin/rofi-launcher" = {
source = ./rofi-launcher.sh;
executable = true;
};
2024-03-04 08:10:58 +00:00
home.file.".local/bin/randomwp" = {
source = ./randomwp.sh;
executable = true;
};
2024-03-02 22:25:58 +00:00
}