mirror of
https://github.com/kmein/niveum
synced 2026-03-16 10:11:08 +01:00
21 lines
438 B
Nix
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 = "18.09";
|
|
}
|