Add flight, more stuff with distributed builds
This commit is contained in:
parent
2f76f3be7e
commit
0ab856b18e
11 changed files with 218 additions and 2 deletions
14
hosts/flight/filesystems/default.nix
Normal file
14
hosts/flight/filesystems/default.nix
Normal file
|
@ -0,0 +1,14 @@
|
|||
{ config, ... }:
|
||||
{
|
||||
fileSystems = {
|
||||
"/persist/storage" = {
|
||||
device = "/dev/disk/by-uuid/d0d6783f-ad51-4d85-b8a9-3374f6460ef6";
|
||||
fsType = "btrfs";
|
||||
options = [
|
||||
"nofail"
|
||||
"nosuid"
|
||||
"subvol=storage"
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue