diff --git a/nixos-wsl.nix b/nixos-wsl.nix index dc484cd..191a2a6 100644 --- a/nixos-wsl.nix +++ b/nixos-wsl.nix @@ -2,15 +2,16 @@ { imports = [ inputs.nixos-wsl.nixosModules.default - ./system-modules/users.nix - ./system-modules/gc.nix + ./system-modules/base-packages.nix ./system-modules/docker.nix + ./system-modules/gc.nix ./system-modules/gpg.nix ./system-modules/networking.nix ./system-modules/nixd.nix # ./system-modules/sops.nix # ./system-modules/sshd.nix # ./system-modules/syncthing.nix + ./system-modules/users.nix ]; system.stateVersion = pkgs.version; # system.stateVersion = "24.11"; diff --git a/shell-only.nix b/shell-only.nix index bf972ea..4f29f55 100644 --- a/shell-only.nix +++ b/shell-only.nix @@ -31,7 +31,7 @@ home.username = hyper.user; # home.homeDirectory = hyper.home; # for some reason you cant use hyper.home here home.homeDirectory = "/home/${hyper.user}"; - home.stateVersion = pkgs.version; + home.stateVersion = hyper.pkgs-version; xdg = { enable = true; configHome = "${hyper.home}/.config";