nixdots/hosts/vbox_nix/default.nix

18 lines
400 B
Nix
Raw Normal View History

2024-02-24 21:24:22 +00:00
{lib, ...}:
{
imports = [ ./hardware-configuration.nix ];
boot.loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
timeout = 3;
};
2024-02-24 21:44:19 +00:00
networking.hostName = "vboxnix";
2024-02-24 21:24:22 +00:00
# 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";
}