diff options
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; } |