diff options
Diffstat (limited to 'home')
-rw-r--r-- | home/configs/delta/remirin.nix | 24 | ||||
-rw-r--r-- | home/default.nix | 32 |
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"; |