1
0
mirror of https://github.com/kmein/niveum synced 2026-03-16 10:11:08 +01:00

move system-specific config out of imports section

This commit is contained in:
Kierán Meinhardt
2019-06-19 07:35:08 +02:00
parent 97b014526a
commit f60421fa54
2 changed files with 6 additions and 9 deletions

View File

@@ -2,15 +2,13 @@
{
imports = [
<configs/default.nix>
{
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";

View File

@@ -2,12 +2,11 @@
{
imports = [
<configs/default.nix>
{
services.xserver.xrandrHeads = [ "eDP1" ];
}
./hardware-configuration.nix
];
services.xserver.xrandrHeads = [ "eDP1" ];
niveum = {
networkInterfaces.wireless = "wlp2s0";
promptColours.success = "yellow";