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 | |
| parent | a4c0230b4700498793cc2f898c194f3ec9b23d60 (diff) | |
hosts/profiles: fix darwin hm import
Diffstat (limited to 'hosts')
| -rw-r--r-- | hosts/caroline/default.nix | 2 | ||||
| -rw-r--r-- | hosts/profiles.nix | 7 |
2 files changed, 7 insertions, 2 deletions
diff --git a/hosts/caroline/default.nix b/hosts/caroline/default.nix index 7af0b5f..43dc82f 100644 --- a/hosts/caroline/default.nix +++ b/hosts/caroline/default.nix @@ -4,7 +4,7 @@ _: { gpg.enable = true; }; - homebrew.casks = ["arc" "prismlauncher"]; + homebrew.casks = ["arc"]; networking = rec { computerName = "caroline"; 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 + ]; + }; } ]; }; |
