this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

wallsocket: enable zram & earlyoom

+16 -1
+16 -1
nixos/wallsocket/configuration.nix
··· 69 69 services.usbmuxd.enable = true; 70 70 71 71 # Enable sound with pipewire. 72 - hardware.pulseaudio.enable = false; 72 + services.pulseaudio.enable = false; 73 73 security.rtkit.enable = true; 74 74 services.pipewire = { 75 75 enable = true; ··· 92 92 nix.settings = { 93 93 auto-optimise-store = true; 94 94 experimental-features = ["nix-command" "flakes"]; 95 + trusted-users = ["root" "@wheel"]; 95 96 }; 96 97 97 98 nix.gc = { ··· 246 247 style = "kvantum"; 247 248 platformTheme = "kde"; 248 249 }; 250 + 251 + systemd.extraConfig = '' 252 + DefaultTimeoutStopSec=30s 253 + ''; 254 + systemd.user.extraConfig = '' 255 + DefaultTimeoutStopSec=30s 256 + ''; 257 + 258 + services.systembus-notify.enable = true; 259 + 260 + services.earlyoom.enable = true; 261 + services.earlyoom.enableNotifications = true; 262 + zramSwap.enable = true; 263 + zramSwap.algorithm = "zstd"; 249 264 250 265 system.stateVersion = "24.05"; # Did you read the comment? 251 266 }