23 lines
417 B
Nix
23 lines
417 B
Nix
{ ... }:
|
|
{
|
|
flake.modules.nixos.aquaticRouter = {
|
|
fileSystems = {
|
|
/* TODO:
|
|
|
|
"/" = {
|
|
device = "/dev/disk/by-uuid/6e97a051-2612-49cc-8fbf-218e415b1711";
|
|
fsType = "ext4";
|
|
};
|
|
"/boot" = {
|
|
device = "/dev/disk/by-uuid/A5EB-D31E";
|
|
fsType = "vfat";
|
|
options = [
|
|
"fmask=0077"
|
|
"dmask=0077"
|
|
];
|
|
};
|
|
|
|
*/
|
|
};
|
|
};
|
|
}
|