From 30c37b0798216016ff32ba66bafcce8a3d01b081 Mon Sep 17 00:00:00 2001 From: niten Date: Wed, 6 Oct 2021 07:12:50 -0700 Subject: [PATCH] Tweak to initialize.nix --- config/hosts/atom.nix | 1 + initialize.nix | 5 ++--- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/config/hosts/atom.nix b/config/hosts/atom.nix index 9ca26a9..08e059e 100644 --- a/config/hosts/atom.nix +++ b/config/hosts/atom.nix @@ -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; diff --git a/initialize.nix b/initialize.nix index 90e3f87..0cc94ce 100644 --- a/initialize.nix +++ b/initialize.nix @@ -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; }; }