nixos/home/scripts/default.nix

19 lines
423 B
Nix
Raw Normal View History

2024-03-02 22:25:58 +00:00
{ config, ... }: {
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-05 07:47:09 +00:00
home.file.".local/bin/backup-home" = {
source = ./backup-home.sh;
executable = true;
};
2024-03-02 22:25:58 +00:00
}