Initial, broken
This commit is contained in:
+5
-3
@@ -1,4 +1,4 @@
|
||||
{ hostname, home-manager-module, pkgs, include-secrets ? true, ... }:
|
||||
{ hostname, pkgs, build-timestamp, fudo-secrets ? null, ... }:
|
||||
|
||||
let
|
||||
# Get info on this host so we know what to load
|
||||
@@ -9,7 +9,7 @@ in {
|
||||
./lib
|
||||
./config
|
||||
|
||||
home-manager-module
|
||||
#home-manager-module
|
||||
|
||||
(./. + "/config/hardware/${hostname}.nix")
|
||||
(./. + "/config/host-config/${hostname}.nix")
|
||||
@@ -19,10 +19,12 @@ in {
|
||||
];
|
||||
|
||||
config = {
|
||||
fudo.local-network.timestamp = build-timestamp;
|
||||
|
||||
instance = { hostname = hostname; };
|
||||
|
||||
nixpkgs.pkgs = pkgs;
|
||||
|
||||
fudo.secrets.enable = include-secrets;
|
||||
fudo.secrets.enable = fudo-secrets != null;
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user