mirror of
https://github.com/kmein/niveum
synced 2026-03-18 19:11:08 +01:00
15 lines
269 B
Nix
15 lines
269 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
imports =
|
|
[ <systems/generic.nix>
|
|
./hardware-configuration.nix
|
|
];
|
|
|
|
boot.loader.systemd-boot.enable = true;
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
|
|
|
networking.hostName = "homeros";
|
|
|
|
system.stateVersion = "19.03";
|
|
}
|