Clean up config & add comments.
This commit is contained in:
parent
b504700e61
commit
c2fc35e12d
18 changed files with 162 additions and 114 deletions
18
hosts/docker/default.nix
Normal file
18
hosts/docker/default.nix
Normal file
|
@ -0,0 +1,18 @@
|
|||
{
|
||||
# Root filesystem.
|
||||
fileSystems."/" = {
|
||||
device = "/dev/disk/by-uuid/cac60222-9b38-4938-8b17-5fddd67e8e26";
|
||||
fsType = "ext4";
|
||||
};
|
||||
|
||||
# Docker data directory
|
||||
fileSystems."/home/fern/docker/data" = {
|
||||
device = "/dev/disk/by-uuid/95461a94-ad91-43b9-b502-2b5d4496b84e";
|
||||
fsType = "ext4";
|
||||
};
|
||||
|
||||
# Swap.
|
||||
swapDevices = [
|
||||
{device = "/dev/disk/by-uuid/025beadb-a89b-4abe-8d0c-b55401316319";}
|
||||
];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue