diff options
author | Karel Kočí <cynerd@email.cz> | 2025-03-17 11:53:14 +0100 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2025-03-17 11:53:14 +0100 |
commit | 06eab68e050f282fc16e6885c97cccf6a828a86f (patch) | |
tree | a4ae58a86f6e081e819872424e14de11a490cb88 /nixos/configurations/spt-mox.nix | |
parent | e95aecd10d662c58c3be1636886d6ecc9170bd85 (diff) | |
download | nixos-personal-06eab68e050f282fc16e6885c97cccf6a828a86f.tar.gz nixos-personal-06eab68e050f282fc16e6885c97cccf6a828a86f.tar.bz2 nixos-personal-06eab68e050f282fc16e6885c97cccf6a828a86f.zip |
nixos: move stateVersion to the configurations
This should be part of the configuration file as it is pecified to the
machine and should not be modified without consideration.
Diffstat (limited to 'nixos/configurations/spt-mox.nix')
-rw-r--r-- | nixos/configurations/spt-mox.nix | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/nixos/configurations/spt-mox.nix b/nixos/configurations/spt-mox.nix index 682e4fb..8a842b7 100644 --- a/nixos/configurations/spt-mox.nix +++ b/nixos/configurations/spt-mox.nix @@ -3,10 +3,12 @@ pkgs, ... }: { + system.stateVersion = "24.05"; turris.board = "mox"; deploy = { enable = true; ssh.host = "mox.spt"; + configurationLimit = 8; }; cynerd = { |