mirror of
https://git.adityakumar.xyz/betterlockscreen-openrc.git
synced 2024-11-08 18:29:45 +00:00
15 lines
283 B
Nix
15 lines
283 B
Nix
|
{
|
||
|
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"
|
||
|
'';
|
||
|
}
|