mirror of
https://github.com/EdenQwQ/nixos.git
synced 2026-07-16 22:16:51 +08:00
9 lines
155 B
Nix
9 lines
155 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
nix = {
|
|
package = pkgs.nix;
|
|
extraOptions = ''
|
|
!include ${config.age.secrets.nix_github_token.path}
|
|
'';
|
|
};
|
|
}
|