NixOS-Config/modules/home/wms/sway/swaysleep/default.nix

11 lines
277 B
Nix
Raw Normal View History

2024-11-12 18:03:28 -05:00
{ 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'
'')
];
}