Compare commits

...

3 commits

Author SHA1 Message Date
892b42a206 rename 2026-03-30 23:52:39 +02:00
67fa0955ae Merge branch 'main' of ssh://git.koendev.nl:16718/Koen/nix-config 2026-03-30 23:48:30 +02:00
368256ffe6 remove bulk partition 2026-03-30 23:47:37 +02:00
3 changed files with 3 additions and 8 deletions

View file

@ -22,11 +22,6 @@
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
./erase-your-darlings.nix ./eraseYourDarlings.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.erase-your-darlings; cfg = config.horseman.base.eraseYourDarlings;
in { in {
options = { 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"; enable = mkEnableOption "If set, assumes the machine has been set up as a Erase Your Darlings device";
}; };
}; };