11 lines
277 B
Nix
11 lines
277 B
Nix
|
{ pkgs, config, ... }:
|
||
|
{
|
||
|
home.packages = with pkgs; [
|
||
|
(pkgs.writeScriptBin "swaysleep" ''
|
||
|
swaylock & ${pkgs.swayidle}/bin/swayidle -w \
|
||
|
timeout 1 'swaymsg "output * dpms off"' \
|
||
|
resume 'swaymsg "output * dpms on"; pkill -9 swayidle'
|
||
|
'')
|
||
|
];
|
||
|
}
|