diff options
| author | seth <[email protected]> | 2023-08-20 18:11:56 -0400 |
|---|---|---|
| committer | seth <[email protected]> | 2023-08-20 18:11:56 -0400 |
| commit | 9485895789fa08bf0978d59b2db98f0d96ddaec8 (patch) | |
| tree | 91708608014aaf9612b317ba56c6218d293355ec /hosts/profiles.nix | |
| parent | a4c0230b4700498793cc2f898c194f3ec9b23d60 (diff) | |
hosts/profiles: fix darwin hm import
Diffstat (limited to 'hosts/profiles.nix')
| -rw-r--r-- | hosts/profiles.nix | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/hosts/profiles.nix b/hosts/profiles.nix index deee5ff..c93dfc4 100644 --- a/hosts/profiles.nix +++ b/hosts/profiles.nix @@ -71,13 +71,18 @@ in { home-manager.darwinModules.home-manager ../users/seth - ../users/seth/darwin.nix self.darwinModules.default { base.enable = true; desktop.enable = true; system.stateVersion = 4; + + home-manager.users.seth = { + imports = [ + ../users/seth/darwin.nix + ]; + }; } ]; }; |
