kyra(hardening): tmpfs rootfs init

Signed-off-by: s0me1newithhand7s <git+me@hand7s.org>
This commit is contained in:
s0me1newithhand7s 2026-05-03 15:31:21 +03:00
parent fbe9a78856
commit d10e04e07c

18
kyra/disko/nodev.nix Normal file
View file

@ -0,0 +1,18 @@
_: {
disko = {
devices = {
nodev = {
"/" = {
fsType = "tmpfs";
mountOptions = [
"size=1G"
"mode=755"
"nodev"
"nosuid"
"rw"
];
};
};
};
};
}