diff --git a/src/system/machines/workstation/default.nix b/src/system/machines/workstation/default.nix index baf8fb6..f68b744 100644 --- a/src/system/machines/workstation/default.nix +++ b/src/system/machines/workstation/default.nix @@ -1,7 +1 @@ -{ ... }: - -{ - imports = [ - ./home.nix - ]; -} +{ imports = [ ./home.nix ]; } diff --git a/src/system/machines/workstation/home.nix b/src/system/machines/workstation/home.nix index 3aa0625..5fbae30 100644 --- a/src/system/machines/workstation/home.nix +++ b/src/system/machines/workstation/home.nix @@ -1,7 +1,7 @@ { config, pkgs, ... }: { - imports = [ ../../../user ]; + imports = [ ./user ]; home = { stateVersion = "23.11"; @@ -48,5 +48,10 @@ }; }; }; + + home.file.".config/home-manager" = { + source = ../../../..; + recursive = true; + }; }; } diff --git a/src/system/machines/workstation/user b/src/system/machines/workstation/user new file mode 120000 index 0000000..0b7ce2d --- /dev/null +++ b/src/system/machines/workstation/user @@ -0,0 +1 @@ +../../../user/ \ No newline at end of file