about summary refs log tree commit diff
diff options
context:
space:
mode:
authorsefidel <contact@sefidel.net>2025-01-19 09:08:22 +1000
committersefidel <contact@sefidel.net>2025-01-19 09:08:22 +1000
commit5c00f3b19e9be1f002bd6d8cecea653c9815b7ae (patch)
treee12119412e8c30b29cd72d53753d6ac326eeb0c7
parentee777b34dc317e54e6bfddeec58f5d65a7e8ab44 (diff)
downloadnixrc-5c00f3b19e9be1f002bd6d8cecea653c9815b7ae.tar.gz
nixrc-5c00f3b19e9be1f002bd6d8cecea653c9815b7ae.zip
feat(home): configure remirin@delta
-rw-r--r--home/configs/delta/remirin.nix24
-rw-r--r--home/default.nix32
2 files changed, 56 insertions, 0 deletions
diff --git a/home/configs/delta/remirin.nix b/home/configs/delta/remirin.nix
new file mode 100644
index 0000000..9ef3bc3
--- /dev/null
+++ b/home/configs/delta/remirin.nix
@@ -0,0 +1,24 @@
+{ pkgs, ... }:
+
+{
+  config = {
+    activeProfiles = [
+      "base"
+      "darwin"
+#      "gui"
+#      "browsing"
+      "development"
+      "communication"
+#      "multimedia"
+#      "creative"
+#      "research"
+#      "security"
+#      "gaming"
+    ];
+
+    programs.htop.settings.detailed_cpu_time = true;
+
+    sops.defaultSopsFile = ../../secrets/secrets.yaml;
+    sops.gnupg.home = "/Users/remirin/.gnupg";
+  };
+}
diff --git a/home/default.nix b/home/default.nix
index eb52fb5..2bb23a1 100644
--- a/home/default.nix
+++ b/home/default.nix
@@ -66,6 +66,38 @@
     version = "23.11";
   };
 
+  "remirin@delta" = self.lib.mkHome {
+    username = "remirin";
+    hostname = "delta";
+    homeDirectory = "/Users/remirin";
+    pkgs = import unstable {
+      system = "aarch64-apple-darwin";
+      overlays = with inputs; [
+        rust.overlays.default
+        neovim-nightly.overlays.default
+        nur.overlays.default
+      ];
+    };
+
+    extraModules = [
+      ./profiles/populate.nix
+      ./profiles/base
+      ./profiles/darwin
+      ./profiles/browsing
+      ./profiles/development
+      ./profiles/communication
+      ./profiles/multimedia
+      ./profiles/creative
+      ./profiles/research
+      ./profiles/security
+
+      inputs.mac-app-util.homeManagerModules.default
+      inputs.sops-nix.homeManagerModules.sops
+    ];
+
+    version = "25.05";
+  };
+
   "sefidel@cobalt" = self.lib.mkHome {
     username = "sefidel";
     hostname = "cobalt";