From 4c4b859ed073a720460c414d97b311bc4a935738 Mon Sep 17 00:00:00 2001 From: Squibid Date: Mon, 1 Dec 2025 20:43:35 -0500 Subject: [PATCH] this should be per host --- hosts/blob/default.nix | 6 ++++++ hosts/crayon/default.nix | 6 ++++++ modules/os.nix | 6 ------ 3 files changed, 12 insertions(+), 6 deletions(-) diff --git a/hosts/blob/default.nix b/hosts/blob/default.nix index 5c2ca18..9a9cd87 100644 --- a/hosts/blob/default.nix +++ b/hosts/blob/default.nix @@ -18,4 +18,10 @@ # ai.enable = true; jellyfin.enable = true; minecraft.enable = true; + + # 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 = "25.05"; # Did you read the comment? } diff --git a/hosts/crayon/default.nix b/hosts/crayon/default.nix index b343d1d..50373bc 100644 --- a/hosts/crayon/default.nix +++ b/hosts/crayon/default.nix @@ -16,4 +16,10 @@ privateKeyFile = config.sops.secrets."wireguard/crayon".path; externalInterface = "enp1s0"; }; + + # 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 = "25.05"; # Did you read the comment? } diff --git a/modules/os.nix b/modules/os.nix index e30e6df..dae64ba 100644 --- a/modules/os.nix +++ b/modules/os.nix @@ -19,10 +19,4 @@ enable = true; dates = "weekly"; }; - - # 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 = "25.05"; # Did you read the comment? }