diff options
Diffstat (limited to 'shell.nix')
-rw-r--r-- | shell.nix | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..7bf3c65 --- /dev/null +++ b/shell.nix @@ -0,0 +1,14 @@ +{ + pkgs ? import /run/nixpkgs {}, + lib ? pkgs.lib, + ... +}: + +with lib; + +pkgs.mkShell { + buildInputs = with pkgs; [ bc coreutils i3lock-color gawk gnugrep gnused imagemagick procps shellcheck xorg.xdpyinfo xorg.xrandr xorg.xset ]; + shellHooks = '' + alias i3lock="i3lock-color" + ''; +} |