1
0
mirror of https://github.com/kmein/niveum synced 2026-03-16 10:11:08 +01:00
Files
niveum/systems/homeros/configuration.nix
2019-04-19 15:02:05 +02:00

21 lines
426 B
Nix

{ config, pkgs, ... }:
{
imports = [
<configs>
{
services.xserver.xrandrHeads = [ "LVDS1" { output = "HDMI1"; primary = true; } ];
}
{
environment.systemPackages = [ pkgs.unstable.zeroad ];
}
./hardware-configuration.nix
];
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
networking.hostName = "homeros";
system.stateVersion = "18.09";
}