nix-infra/config/hosts/matrix/configuration.nix
yuri 58d529d0ba Configure Matrix host
Co-authored-by: julian <julian@jsts.xyz>
2023-10-06 05:33:28 +02:00

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";
}