diff options
Diffstat (limited to 'home-manager/i3/i3-commands.nix')
| -rw-r--r-- | home-manager/i3/i3-commands.nix | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/home-manager/i3/i3-commands.nix b/home-manager/i3/i3-commands.nix new file mode 100644 index 0000000..9b8705d --- /dev/null +++ b/home-manager/i3/i3-commands.nix @@ -0,0 +1,16 @@ +{ + stdenv +}: +stdenv.mkDerivation { + pname = "i3-commands"; + version = "0.0.1"; + + srcs = builtins.path { name = "scripts"; path = ./scripts/.; }; + + installPhase = '' +runHook preInstall +mkdir -p $out/bin +install -D -m 755 ./* $out/bin +runHook postInstall +''; +} |
