diff options
Diffstat (limited to 'systems')
-rw-r--r-- | systems/alnus/config.nix | 7 | ||||
-rw-r--r-- | systems/mu/config.nix | 4 | ||||
-rw-r--r-- | systems/querel/config.nix | 3 | ||||
-rw-r--r-- | systems/xu/config.nix | 6 |
4 files changed, 11 insertions, 9 deletions
diff --git a/systems/alnus/config.nix b/systems/alnus/config.nix index 8af12fe..a3d1e9a 100644 --- a/systems/alnus/config.nix +++ b/systems/alnus/config.nix @@ -1,6 +1,7 @@ { config, lib, pkgs, ... }: { imports = [ ../../configs/hw/x220.nix + ../../configs/earlyoom.nix ../../configs/exim-retiolum.nix ../../configs/retiolum.nix ]; @@ -48,12 +49,6 @@ networking.networkmanager.enable = true; - services.earlyoom.enable = true; - services.earlyoom.freeMemThreshold = 5; - systemd.services.earlyoom.environment.EARLYOOM_ARGS = toString [ - "--prefer '^(Web Content|Privileged Cont)$'" # firefox tabs - ]; - services.libinput.enable = false; services.xserver = { diff --git a/systems/mu/config.nix b/systems/mu/config.nix index b3d3e99..f9debe4 100644 --- a/systems/mu/config.nix +++ b/systems/mu/config.nix @@ -38,8 +38,6 @@ nixpkgs.config.allowUnfree = true; hardware.opengl.driSupport32Bit = true; - hardware.pulseaudio.enable = true; - hardware.enableRedistributableFirmware = true; boot.loader.efi.canTouchEfiVariables = true; @@ -98,6 +96,8 @@ pkgs.xorg.fontschumachermisc ]; + services.pulseaudio.enable = true; + services.xserver.enable = true; services.xserver.xkb.layout = "de"; services.xserver.xkb.options = "eurosign:e"; diff --git a/systems/querel/config.nix b/systems/querel/config.nix index 08ad71c..dff928e 100644 --- a/systems/querel/config.nix +++ b/systems/querel/config.nix @@ -49,7 +49,6 @@ }; hardware.enableRedistributableFirmware = true; - hardware.pulseaudio.enable = true; i18n.defaultLocale = "de_DE.UTF-8"; @@ -57,6 +56,8 @@ programs.ssh.startAgent = false; + services.pulseaudio.enable = true; + services.xserver.enable = true; services.xserver.layout = "de"; services.xserver.xkbOptions = "eurosign:e"; diff --git a/systems/xu/config.nix b/systems/xu/config.nix index ee7ae46..abf433c 100644 --- a/systems/xu/config.nix +++ b/systems/xu/config.nix @@ -4,6 +4,7 @@ imports = [ ../../configs/autotether.nix ../../configs/hw/x220.nix + ../../configs/earlyoom.nix ../../configs/exim-retiolum.nix ../../configs/gitconfig.nix ../../configs/gitrepos.nix @@ -140,8 +141,13 @@ gptfdisk ]; + networking.usePredictableInterfaceNames = false; + networking.wireless.enable = true; + networking.interfaces.eth0.useDHCP = true; + networking.interfaces.eth0.wakeOnLan.enable = true; + #services.bitlbee.enable = true; #services.tor.client.enable = true; #services.tor.enable = true; |