From 5c00f3b19e9be1f002bd6d8cecea653c9815b7ae Mon Sep 17 00:00:00 2001 From: sefidel Date: Sun, 19 Jan 2025 09:08:22 +1000 Subject: feat(home): configure remirin@delta --- home/configs/delta/remirin.nix | 24 ++++++++++++++++++++++++ home/default.nix | 32 ++++++++++++++++++++++++++++++++ 2 files changed, 56 insertions(+) create mode 100644 home/configs/delta/remirin.nix 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"; -- cgit 1.4.1