24 lines
601 B
Nix
24 lines
601 B
Nix
{ ... }: {
|
|
# Look into: https://git.sr.ht/~magic_rb/dotfiles/tree/master/item/nixos/systems/gooseberry
|
|
|
|
# Disabling the whole `profiles/base.nix` module, which is responsible
|
|
# for adding ZFS and a bunch of other unnecessary programs:
|
|
disabledModules = [
|
|
"profiles/base.nix"
|
|
];
|
|
|
|
boot.loader.grub.enable = false;
|
|
boot.loader.generic-extlinux-compatible.enable = true;
|
|
|
|
fileSystems = {
|
|
"/" = {
|
|
device = "/dev/disk/by-label/NIXOS_SD";
|
|
fsType = "ext4";
|
|
};
|
|
|
|
"/boot/firmware" = {
|
|
device = "/dev/disk/by-label/FIRMWARE";
|
|
fsType = "vfat";
|
|
};
|
|
};
|
|
}
|