diff options
| author | Fuwn <[email protected]> | 2024-09-11 19:57:47 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-09-11 19:57:47 -0700 |
| commit | 42eb71642409acac17c3710584cfc7ff88ae242e (patch) | |
| tree | 5671db2f5f50ff599101c72b32048871b2dedf13 /hosts | |
| parent | flake: inputs/outputs order (diff) | |
| download | nixos-config-42eb71642409acac17c3710584cfc7ff88ae242e.tar.xz nixos-config-42eb71642409acac17c3710584cfc7ff88ae242e.zip | |
lib: secrets
Diffstat (limited to 'hosts')
| -rw-r--r-- | hosts/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hosts/default.nix b/hosts/default.nix index 266d30c..17f5494 100644 --- a/hosts/default.nix +++ b/hosts/default.nix @@ -6,7 +6,7 @@ ... }: let - secrets = builtins.fromTOML (builtins.readFile "${self}/secrets/secrets.toml"); + secrets = import ../lib/secrets.nix { inherit self; }; in { flake.nixosConfigurations.kansai = lib.nixosSystem { |