1st commit

This commit is contained in:
benstrb 2025-11-10 19:57:23 +01:00
commit 74d15b4c6a
25 changed files with 1328 additions and 0 deletions

12
configuration/disk.nix Normal file
View file

@ -0,0 +1,12 @@
{
fileSystems."/mnt/removable" = {
device = "/dev/disk/by-uuid/1a899f03-4c6a-460a-9635-c4b208b29fba";
fsType = "ext4";
options = [
"nofail"
"users"
"rw"
"exec"
];
};
}