1
0
mirror of https://github.com/kmein/niveum synced 2026-03-22 12:51:08 +01:00

modularize

This commit is contained in:
Kierán Meinhardt
2019-04-19 03:11:51 +02:00
parent a90799f39b
commit a763c63de4
58 changed files with 1317 additions and 1172 deletions

View File

@@ -1,14 +1,22 @@
{ config, pkgs, ... }:
{
imports =
[ <systems/generic.nix>
./hardware-configuration.nix
];
imports = [
<configs>
{
services.xserver.xrandrHeads = [ "LVDS1" { output = "HDMI1"; primary = true; } ];
}
{
environment.systemPackages =
let unstable = import <nixos-unstable> {};
in [ unstable.zeroad ];
}
./hardware-configuration.nix
];
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
networking.hostName = "homeros";
system.stateVersion = "19.03";
system.stateVersion = "18.09";
}