1
0
mirror of https://github.com/kmein/niveum synced 2026-03-16 18:21:07 +01:00
Files
niveum/systems/homeros/configuration.nix
Kierán Meinhardt 495fcf0775 19.03
2019-05-15 18:21:58 +02:00

21 lines
438 B
Nix

{ config, pkgs, ... }:
{
imports = [
<configs/default.nix>
{
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 = "19.03";
}