aboutsummaryrefslogtreecommitdiff
path: root/home/configs
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 /home/configs
parentee777b34dc317e54e6bfddeec58f5d65a7e8ab44 (diff)
downloadnixrc-5c00f3b19e9be1f002bd6d8cecea653c9815b7ae.zip
feat(home): configure remirin@delta
Diffstat (limited to 'home/configs')
-rw-r--r--home/configs/delta/remirin.nix24
1 files changed, 24 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";
+ };
+}