diff options
Diffstat (limited to 'modules/base/default.nix')
| -rw-r--r-- | modules/base/default.nix | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/modules/base/default.nix b/modules/base/default.nix index b9a7c8b..72911a5 100644 --- a/modules/base/default.nix +++ b/modules/base/default.nix @@ -4,10 +4,10 @@ pkgs, ... }: let - cfg = config.base; + cfg = config.getchoo.base; inherit (lib) mkDefault mkEnableOption mkIf; in { - options.base.enable = mkEnableOption "base module"; + options.getchoo.base.enable = mkEnableOption "base module"; imports = [ ./documentation.nix @@ -18,7 +18,7 @@ in { channelPath = "/etc/nix/channels/nixpkgs"; in mkIf cfg.enable { - base = { + getchoo.base = { documentation.enable = mkDefault true; defaultPackages.enable = mkDefault true; }; @@ -35,12 +35,6 @@ in { settings = { auto-optimise-store = true; experimental-features = ["nix-command" "flakes"]; - trusted-substituters = [ - "https://nix-community.cachix.org" - ]; - trusted-public-keys = [ - "nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs=" - ]; }; nixPath = [ |
