1
0
mirror of https://github.com/kmein/niveum synced 2026-03-17 18:41:09 +01:00
Files
niveum/systems/homeros/configuration.nix

21 lines
438 B
Nix
Raw Normal View History

{ config, pkgs, ... }:
{
2019-04-19 03:11:51 +02:00
imports = [
2019-04-22 22:40:41 +02:00
<configs/default.nix>
2019-04-19 03:11:51 +02:00
{
services.xserver.xrandrHeads = [ "LVDS1" { output = "HDMI1"; primary = true; } ];
}
{
2019-04-19 15:02:05 +02:00
environment.systemPackages = [ pkgs.unstable.zeroad ];
2019-04-19 03:11:51 +02:00
}
./hardware-configuration.nix
];
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
networking.hostName = "homeros";
2019-05-15 18:21:58 +02:00
system.stateVersion = "19.03";
}