From 892b42a20665ee9f2d432535000914f207318e1c Mon Sep 17 00:00:00 2001 From: KoenDR06 Date: Mon, 30 Mar 2026 23:52:39 +0200 Subject: [PATCH] rename --- modules/base/default.nix | 2 +- .../base/{erase-your-darlings.nix => eraseYourDarlings.nix} | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) rename modules/base/{erase-your-darlings.nix => eraseYourDarlings.nix} (93%) 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"; }; };