From 749f96536fc1771ffc3bcbb19664a0483e664d70 Mon Sep 17 00:00:00 2001 From: osbm Date: Wed, 5 Feb 2025 00:36:11 +0300 Subject: [PATCH] unnecessary now --- hosts/ymir/configuration.nix | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) 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 }