summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorseth <[email protected]>2023-08-20 18:11:56 -0400
committerseth <[email protected]>2023-08-20 18:11:56 -0400
commit9485895789fa08bf0978d59b2db98f0d96ddaec8 (patch)
tree91708608014aaf9612b317ba56c6218d293355ec
parenta4c0230b4700498793cc2f898c194f3ec9b23d60 (diff)
hosts/profiles: fix darwin hm import
-rw-r--r--hosts/caroline/default.nix2
-rw-r--r--hosts/profiles.nix7
-rw-r--r--users/seth/darwin.nix1
3 files changed, 8 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
+ ];
+ };
}
];
};
diff --git a/users/seth/darwin.nix b/users/seth/darwin.nix
index 02be223..570dfa8 100644
--- a/users/seth/darwin.nix
+++ b/users/seth/darwin.nix
@@ -4,6 +4,7 @@
home.packages = with pkgs; [
discord
iterm2
+ prismlauncher
spotify
];
}