diff options
| author | Caroline Larimore <caroline@larimo.re> | 2024-07-25 22:01:31 -0700 |
|---|---|---|
| committer | Caroline Larimore <caroline@larimo.re> | 2024-07-25 22:01:31 -0700 |
| commit | 32d1c0375b3d845322bf163beaf8eabf0b8acdbe (patch) | |
| tree | ac2cad647df0615bc19e4a777ef6652a24a4fd98 | |
| parent | ae199bff07285e01acd5fb37db9256916cdbf7ec (diff) | |
c-pc: home: move stateVersion to bottom
| -rw-r--r-- | hosts/c-pc/home.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hosts/c-pc/home.nix b/hosts/c-pc/home.nix index 28a5e12..6e87975 100644 --- a/hosts/c-pc/home.nix +++ b/hosts/c-pc/home.nix @@ -11,8 +11,6 @@ # This lets me switch out my theme without making changes in git theme = import ../../theme.nix; - home.stateVersion = "23.11"; - home.persistence."/persist/home" = { allowOther = true; @@ -135,4 +133,6 @@ home.file = { ".0b".source = config.lib.file.mkOutOfStoreSymlink "${config.home.homeDirectory}/.local/share/PrismLauncher/instances/0b/.minecraft"; }; + + home.stateVersion = "23.11"; } |