aboutsummaryrefslogtreecommitdiff
path: root/home-manager/i3/i3-commands.nix
blob: 9b8705d45e711af13df4fd662f8f26bed673aca0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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
'';
}