fix: host config file

This commit is contained in:
ooks-io 2023-08-21 12:05:30 +12:00
parent 91e544207b
commit 0001c26dcd
2 changed files with 16 additions and 39 deletions

View file

@ -75,6 +75,7 @@
}; };
exec = [ exec = [
"${pkgs.polkit_gnome}/libexec/polkit-gnome-authentication-agent-1"
"${pkgs.swaybg}/bin/swaybg -i ~/.dotfiles/nix/walls/everforest/megacity.png --mode fill" "${pkgs.swaybg}/bin/swaybg -i ~/.dotfiles/nix/walls/everforest/megacity.png --mode fill"
]; ];
exec-once = [ exec-once = [

View file

@ -76,53 +76,29 @@
# Services # Services
# ------------------------------------------------------------------------------------------------- # -------------------------------------------------------------------------------------------------
services = { services = {
logind = { logind = {
lidSwitch = "suspend"; lidSwitch = "suspend";
}; };
dbus = { dbus = {
enable = true; enable = true;
packages = [ pkgs.gcr ]; packages = [ pkgs.gcr ];
}; };
auto-cpufreq = { auto-cpufreq = {
enable = true; enable = true;
settings = { settings = {
battery = { battery = {
governor = "powersave"; governor = "powersave";
turbo = "never"; turbo = "never";
}; };
charger = { charger = {
governor = "performance"; governor = "performance";
turbo = "auto"; turbo = "auto";
}; };
}; };
}; };
}; };
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;
};
};
};
# Firewall
# -------------------------------------------------------------------------------------------------
# networking.firewall.allowedTCPPorts = [ ... ];
# networking.firewall.allowedUDPPorts = [ ... ];
# Or disable the firewall altogether.
# networking.firewall.enable = false;
# System Version # System Version
# ------------------------------------------------------------------------------------------------- # -------------------------------------------------------------------------------------------------