nixos/home/scripts/default.nix

11 lines
229 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-02 22:25:58 +00:00
}