nixos-config/hosts/phantom/hardware-config.nix

20 lines
396 B
Nix
Raw Normal View History

{
2024-09-27 20:08:08 -03:00
fileSystems."/var/lib/syncthing-data" = {
device = "172.16.130.7:/nas/5749/syncthinng_data";
fsType = "nfs";
options = [ "nofail" ];
};
2025-01-17 00:34:11 -03:00
fileSystems."/var/lib/mastodon" = {
device = "172.16.130.7:/nas/5749/mastodon";
fsType = "nfs";
options = [ "nofail" ];
};
2024-09-27 20:08:08 -03:00
swapDevices = [
{
device = "/swap/swapfile";
size = (1024 * 2); # 2 GB
}
];
2024-03-28 21:56:52 -03:00
}