nixdots/hosts/vbox_nix/default.nix
2024-02-24 22:37:38 +01:00

18 lines
398 B
Nix

{lib, ...}:
{
imports = [ ./hardware-configuration.nix ];
boot.loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
timeout = 3;
};
networking.hostName = "nixos";
# NixOS release from which this machine was first installed.
# (for stateful data, like file locations and db versions)
# Leave this alone!
system.stateVersion = lib.mkForce "23.11";
}