fix: base config should not relys on agenix secrets

This commit is contained in:
Ryan Yin
2026-03-08 00:25:03 +08:00
parent 91ab18fc55
commit 4211d18ad1
2 changed files with 6 additions and 4 deletions

View File

@@ -26,8 +26,4 @@
nix.settings.auto-optimise-store = true;
nix.channel.enable = false; # remove nix-channel related tools & configs, we use flakes instead.
nix.extraOptions = ''
!include ${config.age.secrets.nix-access-tokens.path}
'';
}

View File

@@ -0,0 +1,6 @@
{ config, ... }:
{
nix.extraOptions = ''
!include ${config.age.secrets.nix-access-tokens.path}
'';
}