all repos — nixfiles @ 880f752dc8d2f8c2457ddabd64623a7f4ec5a717

System and user configuration, managed by nix and home-manager

Add secrets to home-manager configuration
Alan Pearce alan@alanpearce.eu
Wed, 12 Oct 2022 06:15:06 +0200
commit

880f752dc8d2f8c2457ddabd64623a7f4ec5a717

parent

79e99bb67f841d829dd1775c2d47008a15ba63e2

3 files changed, 24 insertions(+), 5 deletions(-)

jump to
M flake.lockflake.lock
@@ -127,7 +127,24 @@ "darwin": "darwin",         "emacs-overlay": "emacs-overlay",
         "home-manager": "home-manager",
         "nixos-hardware": "nixos-hardware",
-        "nixpkgs": "nixpkgs_2"
+        "nixpkgs": "nixpkgs_2",
+        "secrets": "secrets"
+      }
+    },
+    "secrets": {
+      "flake": false,
+      "locked": {
+        "lastModified": 1657941017,
+        "narHash": "sha256-IrF5XqkCec0XyhCgtPkfjwoezZ5BFm1jhO2hzsAXOxo=",
+        "ref": "refs/heads/main",
+        "rev": "965a22670505edcd64b1139369ff0aa6083fa45d",
+        "revCount": 32,
+        "type": "git",
+        "url": "ssh://git.alanpearce.eu/nixfiles-private"
+      },
+      "original": {
+        "type": "git",
+        "url": "ssh://git.alanpearce.eu/nixfiles-private"
       }
     },
     "utils": {
M flake.nixflake.nix
@@ -7,9 +7,13 @@ darwin.inputs.nixpkgs.follows = "nixpkgs";     home-manager.url = github:nix-community/home-manager;
     home-manager.inputs.nixpkgs.follows = "nixpkgs";
     emacs-overlay.url = github:nix-community/emacs-overlay;
+    secrets = {
+      url = git+ssh://git.alanpearce.eu/nixfiles-private;
+      flake = false;
+    };
   };
 
-  outputs = { self, darwin, home-manager, nixpkgs, ... }@attrs:
+  outputs = { self, darwin, home-manager, nixpkgs, secrets, ... }@attrs:
   let
     darwinSystem =
       "x86_64-darwin"; # aarch64 is still failing on some compiler-rt derivation
@@ -27,7 +31,7 @@ modules = [ ./system/mba.nix ];     };
     homeConfigurations.mba = home-manager.lib.homeManagerConfiguration {
       pkgs = darwinPkgs;
-      modules = [ ./user/mba.nix ];
+      modules = [ ./user/mba.nix (secrets + "/default.nix") ];
     };
   };
 }
M user/mba.nixuser/mba.nix
@@ -2,8 +2,6 @@ { config, pkgs, ... }: 
 {
   imports = [
-    ../private
-
     ./settings/base.nix
     ./settings/development/base.nix
     ./settings/development/clojure.nix