mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-04-24 17:58:30 +02:00
fix: base config should not relys on agenix secrets
This commit is contained in:
@@ -26,8 +26,4 @@
|
|||||||
nix.settings.auto-optimise-store = true;
|
nix.settings.auto-optimise-store = true;
|
||||||
|
|
||||||
nix.channel.enable = false; # remove nix-channel related tools & configs, we use flakes instead.
|
nix.channel.enable = false; # remove nix-channel related tools & configs, we use flakes instead.
|
||||||
|
|
||||||
nix.extraOptions = ''
|
|
||||||
!include ${config.age.secrets.nix-access-tokens.path}
|
|
||||||
'';
|
|
||||||
}
|
}
|
||||||
|
|||||||
6
modules/nixos/desktop/nix.nix
Normal file
6
modules/nixos/desktop/nix.nix
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
{ config, ... }:
|
||||||
|
{
|
||||||
|
nix.extraOptions = ''
|
||||||
|
!include ${config.age.secrets.nix-access-tokens.path}
|
||||||
|
'';
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user