From f60421fa543375c221354dcc7106b340967af796 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kier=C3=A1n=20Meinhardt?= Date: Wed, 19 Jun 2019 07:35:08 +0200 Subject: [PATCH] move system-specific config out of imports section --- systems/homeros/configuration.nix | 10 ++++------ systems/scardanelli/configuration.nix | 5 ++--- 2 files changed, 6 insertions(+), 9 deletions(-) diff --git a/systems/homeros/configuration.nix b/systems/homeros/configuration.nix index f3f0144..21d5290 100644 --- a/systems/homeros/configuration.nix +++ b/systems/homeros/configuration.nix @@ -2,15 +2,13 @@ { imports = [ - { - services.xserver.xrandrHeads = [ "LVDS1" { output = "HDMI1"; primary = true; } ]; - } - { - environment.systemPackages = [ pkgs.unstable.zeroad ]; - } ./hardware-configuration.nix ]; + services.xserver.xrandrHeads = [ "LVDS1" { output = "HDMI1"; primary = true; } ]; + + environment.systemPackages = [ pkgs.unstable.zeroad ]; + niveum = { networkInterfaces.wireless = "wlp3s0"; promptColours.success = "green"; diff --git a/systems/scardanelli/configuration.nix b/systems/scardanelli/configuration.nix index 410da8d..1092ecc 100644 --- a/systems/scardanelli/configuration.nix +++ b/systems/scardanelli/configuration.nix @@ -2,12 +2,11 @@ { imports = [ - { - services.xserver.xrandrHeads = [ "eDP1" ]; - } ./hardware-configuration.nix ]; + services.xserver.xrandrHeads = [ "eDP1" ]; + niveum = { networkInterfaces.wireless = "wlp2s0"; promptColours.success = "yellow";