nixos-conf/hosts/forgejo/state.nix

19 lines
324 B
Nix
Raw Normal View History

{ ... }:
2025-06-05 00:29:40 +03:00
{
system.stateVersion = "24.11";
fileSystems."/" = {
device = "/dev/disk/by-uuid/6de79a95-d101-4734-8482-1e0869498ce8";
fsType = "ext4";
};
fileSystems."/boot" = {
device = "/dev/disk/by-uuid/78B9-CA51";
fsType = "vfat";
options = [
"fmask=0077"
"dmask=0077"
];
};
}