From 1125aaa49aec6a220fd3b9d03076fec398b35a14 Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Sat, 9 Apr 2022 09:42:03 -0700 Subject: add a few more modules to home/ and delete stuff --- users/fcuny/desktop/wm/screenlock.nix | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 users/fcuny/desktop/wm/screenlock.nix (limited to 'users/fcuny/desktop/wm/screenlock.nix') diff --git a/users/fcuny/desktop/wm/screenlock.nix b/users/fcuny/desktop/wm/screenlock.nix deleted file mode 100644 index 24fde8c..0000000 --- a/users/fcuny/desktop/wm/screenlock.nix +++ /dev/null @@ -1,27 +0,0 @@ -{ pkgs, config, ... }: - -{ - - xdg.configFile."swaylock/config" = { - source = ../../configs/swaylock/config; - }; - - # https://github.com/nix-community/home-manager/pull/2610 - # won't be needed for ever - systemd.user.services.swayidle = { - Unit.PartOf = [ "sway-session.target" ]; - Install.WantedBy = [ "sway-session.target" ]; - - Service = { - Environment = "PATH=${pkgs.bash}/bin:${config.wayland.windowManager.sway.package}/bin"; - ExecStart = '' - ${pkgs.swayidle}/bin/swayidle -w \ - timeout 300 "${pkgs.swaylock}/bin/swaylock" \ - timeout 300 'swaymsg "output * dpms off"' \ - resume 'swaymsg "output * dpms on"' \ - before-sleep "${pkgs.swaylock}/bin/swaylock" - ''; - Restart = "on-failure"; - }; - }; -} -- cgit 1.4.1