Refactor; add wine, polkit, and failed attempt at swapfile hibernation

This commit is contained in:
Lauren Lagarde 2025-03-13 22:29:22 -05:00
parent ae4a5f6886
commit 692a782a29
11 changed files with 35 additions and 44 deletions

View file

@ -15,4 +15,18 @@
};
services.displayManager.defaultSession = "none+i3";
systemd.user.services.polkit-gnome-authentication-agent-1 = {
description = "polkit-gnome-authentication-agent-1";
wantedBy = [ "graphical-session.target" ];
wants = [ "graphical-session.target" ];
after = [ "graphical-session.target" ];
serviceConfig = {
Type = "simple";
ExecStart = "${pkgs.polkit_gnome}/libexec/polkit-gnome-authentication-agent-1";
Restart = "on-failure";
RestartSec = 1;
TimeoutStopSec = 10;
};
};
}