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";
admin-email = "niten@fudo.org";
domain = "sea.fudo.org";
site = "mobile";
profile = "laptop";
arch = "x86_64-linux";
nixos-system = true;

View File

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