forked from CCCHH/nix-infra
18 lines
236 B
Nix
18 lines
236 B
Nix
|
{ ... }:
|
||
|
|
||
|
{
|
||
|
networking = {
|
||
|
hostName = "matrix";
|
||
|
};
|
||
|
|
||
|
fileSystems = {
|
||
|
"/mnt/data" = {
|
||
|
device = "/dev/disk/by-label/data";
|
||
|
fsType = "ext4";
|
||
|
autoResize = true;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
system.stateVersion = "23.05";
|
||
|
}
|