diff --git a/hosts/ymir/configuration.nix b/hosts/ymir/configuration.nix index 01939d4..d10c3b5 100644 --- a/hosts/ymir/configuration.nix +++ b/hosts/ymir/configuration.nix @@ -6,9 +6,7 @@ pkgs, inputs, ... -}: let - stateVersion = "25.05"; -in { +}: { imports = [ ./hardware-configuration.nix ../../modules @@ -152,11 +150,5 @@ in { boot.binfmt.emulatedSystems = ["aarch64-linux"]; nix.settings.extra-platforms = config.boot.binfmt.emulatedSystems; - # 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 = stateVersion; # Did you read the comment? + system.stateVersion = "25.05"; # great taboo of the nixos world }