diff options
author | Baitinq <manuelpalenzuelamerino@gmail.com> | 2023-02-20 21:39:14 +0100 |
---|---|---|
committer | Baitinq <manuelpalenzuelamerino@gmail.com> | 2023-02-20 21:39:14 +0100 |
commit | 37689a9bfa6b86e7fbe899d6efde9815c6abf2e4 (patch) | |
tree | ad67798d167eb9c55cd2c3759cc635971fabe9bf /hosts/home.nix | |
parent | Hosts: Add 'open' alias (diff) | |
download | nixos-config-37689a9bfa6b86e7fbe899d6efde9815c6abf2e4.tar.gz nixos-config-37689a9bfa6b86e7fbe899d6efde9815c6abf2e4.tar.bz2 nixos-config-37689a9bfa6b86e7fbe899d6efde9815c6abf2e4.zip |
Flake: Set stateVersion in the hardware set
Diffstat (limited to 'hosts/home.nix')
-rw-r--r-- | hosts/home.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hosts/home.nix b/hosts/home.nix index 15fdc40..6230b7d 100644 --- a/hosts/home.nix +++ b/hosts/home.nix @@ -1,4 +1,4 @@ -{ config, lib, pkgs, inputs, user, hostname, secrets, dotfiles, location, ... }: +{ config, lib, pkgs, inputs, user, hostname, secrets, dotfiles, location, stateVersion, ... }: { imports = [ ../modules/email @@ -369,6 +369,6 @@ # For disabling the automatic creation of $HOME/Desktop xdg.userDirs.desktop = "$HOME/"; - home.stateVersion = "22.05"; + home.stateVersion = stateVersion; } |