mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-10 06:29:41 +00:00
18 lines
398 B
Nix
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";
|
||
|
}
|