Hibernation is now a core option: ``` pub-solar.core.hibernation.enable = true; ``` And there's a paranoia mode, that keeps the disk encrypted as much as possible by enabling hibernation and removing the options for sleep, screen locking. Idle locking now hibernates, and it does it on very short notice.
19 lines
572 B
Nix
19 lines
572 B
Nix
{ pkgs, ... }:
|
|
{
|
|
Unit = {
|
|
Description = "X Settings Daemon";
|
|
Documentation = [ "https://github.com/derat/xsettingsd/wiki/Installation" ];
|
|
BindsTo = [ "sway-session.target" ];
|
|
After = [ "sway-session.target" ];
|
|
# ConditionEnvironment requires systemd v247 to work correctly
|
|
ConditionEnvironment = [ "WAYLAND_DISPLAY" ];
|
|
};
|
|
Service = {
|
|
Type = "simple";
|
|
ExecStart = "${pkgs.xsettingsd}/bin/xsettingsd";
|
|
ExecStop = "/run/current-system/sw/bin/env pkill xsettingsd";
|
|
};
|
|
Install = {
|
|
WantedBy = [ "sway-session.target" ];
|
|
};
|
|
}
|