summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--hosts/caroline/default.nix10
-rw-r--r--hosts/profiles.nix8
2 files changed, 9 insertions, 9 deletions
diff --git a/hosts/caroline/default.nix b/hosts/caroline/default.nix
index 343c1cb..94a5dc2 100644
--- a/hosts/caroline/default.nix
+++ b/hosts/caroline/default.nix
@@ -1,13 +1,5 @@
{pkgs, ...}: {
- imports = [
- ../../users/seth
- ];
-
home-manager.users.seth = {
- imports = [
- ../../users/seth/programs/firefox.nix
- ];
-
home.packages = with pkgs; [
discord-canary
iterm2
@@ -15,6 +7,8 @@
];
};
+ getchoo.desktop.homebrew.enable = true;
+
networking = rec {
computerName = "caroline";
hostName = computerName;
diff --git a/hosts/profiles.nix b/hosts/profiles.nix
index 195da1a..5fa495a 100644
--- a/hosts/profiles.nix
+++ b/hosts/profiles.nix
@@ -71,9 +71,15 @@ in {
modules = with inputs; [
common
home-manager.darwinModules.home-manager
+
+ ../users/seth
self.darwinModules.getchoo
+
{
- getchoo.base.enable = true;
+ getchoo = {
+ base.enable = true;
+ desktop.enable = true;
+ };
system.stateVersion = 4;
}
];