diff --git a/modules/base/default.nix b/modules/base/default.nix index 0627d6d..16647a1 100644 --- a/modules/base/default.nix +++ b/modules/base/default.nix @@ -3,6 +3,6 @@ ./nix.nix ./locale.nix ./secrets.nix - ./erase-your-darlings.nix + ./eraseYourDarlings.nix ]; } diff --git a/modules/base/erase-your-darlings.nix b/modules/base/eraseYourDarlings.nix similarity index 93% rename from modules/base/erase-your-darlings.nix rename to modules/base/eraseYourDarlings.nix index 8128829..a29aa65 100644 --- a/modules/base/erase-your-darlings.nix +++ b/modules/base/eraseYourDarlings.nix @@ -7,10 +7,10 @@ ... }: let inherit (lib) mkEnableOption mkIf mkOption types; - cfg = config.horseman.base.erase-your-darlings; + cfg = config.horseman.base.eraseYourDarlings; in { options = { - horseman.base.erase-your-darlings = { + horseman.base.eraseYourDarlings = { enable = mkEnableOption "If set, assumes the machine has been set up as a Erase Your Darlings device"; }; };