Tweak to initialize.nix

This commit is contained in:
niten 2021-10-06 07:12:50 -07:00
parent f0be146512
commit 30c37b0798
2 changed files with 3 additions and 3 deletions

View File

@ -4,6 +4,7 @@
rp = "niten"; rp = "niten";
admin-email = "niten@fudo.org"; admin-email = "niten@fudo.org";
domain = "sea.fudo.org"; domain = "sea.fudo.org";
site = "mobile";
profile = "laptop"; profile = "laptop";
arch = "x86_64-linux"; arch = "x86_64-linux";
nixos-system = true; nixos-system = true;

View File

@ -1,4 +1,5 @@
{ hostname, pkgs, lib, build-timestamp, fudo-secrets ? null, ... }: { hostname, build-timestamp, ... }:
{ config, lib, pkgs, ... }:
let let
# Get info on this host so we know what to load # Get info on this host so we know what to load
@ -24,7 +25,5 @@ in {
}; };
nixpkgs.pkgs = pkgs; nixpkgs.pkgs = pkgs;
fudo.secrets.enable = fudo-secrets != null;
}; };
} }