diff options
Diffstat (limited to 'nixos/alpha/configuration.nix')
-rw-r--r-- | nixos/alpha/configuration.nix | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/nixos/alpha/configuration.nix b/nixos/alpha/configuration.nix index d15baec..5af387e 100644 --- a/nixos/alpha/configuration.nix +++ b/nixos/alpha/configuration.nix @@ -58,7 +58,7 @@ hardware.enableRedistributableFirmware = true; networking.hostName = "alpha"; - networking.hostId = "641a7b10"; + networking.hostId = "8425e349"; networking.networkmanager.enable = true; networking.useDHCP = false; @@ -324,9 +324,11 @@ }; }; - # This value determines the NixOS release with which your system is to be - # compatible, in order to avoid breaking some software such as database - # servers. You should change this only after NixOS release notes say you - # should. - system.stateVersion = "22.05"; # Did you read the comment? + # This value determines the NixOS release from which the default + # settings for stateful data, like file locations and database versions + # on your system were taken. It's perfectly fine and recommended to leave + # this value at the release version of the first install of this system. + # Before changing this value read the documentation for this option + # (e.g. man configuration.nix or on https://nixos.org/nixos/options.html). + system.stateVersion = "23.11"; # Did you read the comment? } |