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 /home/default.nix | |
| parent | flake: inputs/outputs order (diff) | |
| download | nixos-config-42eb71642409acac17c3710584cfc7ff88ae242e.tar.xz nixos-config-42eb71642409acac17c3710584cfc7ff88ae242e.zip | |
lib: secrets
Diffstat (limited to 'home/default.nix')
| -rw-r--r-- | home/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/home/default.nix b/home/default.nix index 4b52d13..0580ac8 100644 --- a/home/default.nix +++ b/home/default.nix @@ -8,7 +8,7 @@ let forAllSystems = lib.genAttrs (import inputs.systems); nixpkgsFor = forAllSystems (system: import inputs.nixpkgs { inherit system; }); - secrets = builtins.fromTOML (builtins.readFile "${self}/secrets/secrets.toml"); + secrets = import ../lib/secrets.nix { inherit self; }; in { flake.homeConfigurations.ebisu = |