summaryrefslogtreecommitdiff
path: root/modules/base/default.nix
diff options
context:
space:
mode:
authorseth <[email protected]>2023-05-04 17:09:32 -0400
committerseth <[email protected]>2023-05-04 17:09:32 -0400
commit94e2d64cbbb4c1901bbd7466f12662dba28005da (patch)
treeed0eb80c62f75b3ec5f302249dab60b3a1726ed2 /modules/base/default.nix
parent9937a252dec0f33437a396e0f6c43ca456cf5b92 (diff)
modules: prefix with getchoo
Diffstat (limited to 'modules/base/default.nix')
-rw-r--r--modules/base/default.nix12
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 = [