Compare commits

..

No commits in common. "892b42a20665ee9f2d432535000914f207318e1c" and "e8dc9fa5167f99a1b189f2892b0608254cb7a4ef" have entirely different histories.

3 changed files with 8 additions and 3 deletions

View file

@ -22,6 +22,11 @@
fsType = "ext4"; fsType = "ext4";
}; };
fileSystems."/mnt/bulk" = {
device = "/dev/disk/by-uuid/b43f0ba4-c628-4f1a-8523-c6b970325330";
fsType = "ext4";
};
fileSystems."/boot" = { fileSystems."/boot" = {
device = "/dev/disk/by-uuid/6AB6-63FD"; device = "/dev/disk/by-uuid/6AB6-63FD";
fsType = "vfat"; fsType = "vfat";

View file

@ -3,6 +3,6 @@
./nix.nix ./nix.nix
./locale.nix ./locale.nix
./secrets.nix ./secrets.nix
./eraseYourDarlings.nix ./erase-your-darlings.nix
]; ];
} }

View file

@ -7,10 +7,10 @@
... ...
}: let }: let
inherit (lib) mkEnableOption mkIf mkOption types; inherit (lib) mkEnableOption mkIf mkOption types;
cfg = config.horseman.base.eraseYourDarlings; cfg = config.horseman.base.erase-your-darlings;
in { in {
options = { 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"; enable = mkEnableOption "If set, assumes the machine has been set up as a Erase Your Darlings device";
}; };
}; };