Benjamin Bädorf
dc8257f31f
The resumeDevice and kernel `resume` parameter were being used wrong. Only `boot.resumeDevice` is necessary, and it should point at the _block device_ that holds the swapfile. If you are running on encrypted volumes, this means you will need to use the name of the *decrypted block device* on which the swapfile sits.
22 lines
749 B
Nix
22 lines
749 B
Nix
{ psCfg, ... }: ''
|
|
# Set shut down, restart and locking features
|
|
set $mode_system (e)xit, (h)ibernate, (r)eboot, (Shift+s)hutdown
|
|
bindsym $mod+0 mode "$mode_system"
|
|
mode "$mode_system" {
|
|
bindsym e exec swaymsg exit, mode "default"
|
|
'' + (if psCfg.core.hibernation.enable then ''
|
|
bindsym h exec systemctl hibernate, mode "default"
|
|
'' else "")
|
|
+ (if !psCfg.paranoia.enable then ''
|
|
bindsym l exec swaylock-bg, mode "default"
|
|
bindsym s exec systemctl suspend, mode "default"
|
|
'' else "") + ''
|
|
bindsym r exec systemctl reboot, mode "default"
|
|
bindsym Shift+s exec systemctl poweroff, mode "default"
|
|
|
|
# exit system mode: "Enter" or "Escape"
|
|
bindsym Return mode "default"
|
|
bindsym Escape mode "default"
|
|
}
|
|
''
|