diff --git a/machines/terra/hardware-configuration.nix b/machines/terra/hardware-configuration.nix index f06e944..049b792 100644 --- a/machines/terra/hardware-configuration.nix +++ b/machines/terra/hardware-configuration.nix @@ -22,6 +22,11 @@ fsType = "ext4"; }; + fileSystems."/mnt/bulk" = { + device = "/dev/disk/by-uuid/b43f0ba4-c628-4f1a-8523-c6b970325330"; + fsType = "ext4"; + }; + fileSystems."/boot" = { device = "/dev/disk/by-uuid/6AB6-63FD"; fsType = "vfat"; diff --git a/modules/base/default.nix b/modules/base/default.nix index 16647a1..0627d6d 100644 --- a/modules/base/default.nix +++ b/modules/base/default.nix @@ -3,6 +3,6 @@ ./nix.nix ./locale.nix ./secrets.nix - ./eraseYourDarlings.nix + ./erase-your-darlings.nix ]; } diff --git a/modules/base/eraseYourDarlings.nix b/modules/base/erase-your-darlings.nix similarity index 93% rename from modules/base/eraseYourDarlings.nix rename to modules/base/erase-your-darlings.nix index a29aa65..8128829 100644 --- a/modules/base/eraseYourDarlings.nix +++ b/modules/base/erase-your-darlings.nix @@ -7,10 +7,10 @@ ... }: let inherit (lib) mkEnableOption mkIf mkOption types; - cfg = config.horseman.base.eraseYourDarlings; + cfg = config.horseman.base.erase-your-darlings; in { options = { - horseman.base.eraseYourDarlings = { + horseman.base.erase-your-darlings = { enable = mkEnableOption "If set, assumes the machine has been set up as a Erase Your Darlings device"; }; };