nixos/home/scripts/default.nix
2024-03-04 09:10:58 +01:00

15 lines
323 B
Nix

{ config, ... }: {
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;
};
}