.dotfiles/pkgs/swarsel-displaypower/default.nix
2025-01-15 10:27:20 +01:00

6 lines
172 B
Nix

{ self, name, writeShellApplication, sway }:
writeShellApplication {
inherit name;
runtimeInputs = [ sway ];
text = builtins.readFile "${self}/scripts/${name}.sh";
}