diff options
| author | Franck Cuny <franck@fcuny.net> | 2022-02-25 06:42:48 -0800 |
|---|---|---|
| committer | Franck Cuny <franck@fcuny.net> | 2022-02-27 13:05:29 -0800 |
| commit | 713d0476c69c06d6baad9568c0d4def8c1e9fae9 (patch) | |
| tree | ecea510c6d3524a589a2de406c16a9bfe140dc0b /users/fcuny/desktop/sway/sway-idle.nix | |
| parent | hosts: add tahoe, the new NAS (diff) | |
| download | infra-713d0476c69c06d6baad9568c0d4def8c1e9fae9.tar.gz | |
sway: re-organize the modules
Rename 'sway' to 'wm' to make it more generic; rename some of the other
modules (e.g. 'wofi' to 'launcher'), for the same reason.
Diffstat (limited to 'users/fcuny/desktop/sway/sway-idle.nix')
| -rw-r--r-- | users/fcuny/desktop/sway/sway-idle.nix | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/users/fcuny/desktop/sway/sway-idle.nix b/users/fcuny/desktop/sway/sway-idle.nix deleted file mode 100644 index 24fde8c..0000000 --- a/users/fcuny/desktop/sway/sway-idle.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"; - }; - }; -} |
