nixos/home/scripts/default.nix
2024-03-03 07:16:13 +01:00

11 lines
229 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;
};
}