Compare commits

...

3 Commits

Author SHA1 Message Date
0caee5524f
nullbox: move minecraft server to SSD 2024-11-27 22:26:33 -05:00
0e0c33abb3
Update authelia-users.age 2024-11-27 22:26:33 -05:00
22b9c961e9
communication: Add some Tor packages 2024-11-27 22:26:33 -05:00
3 changed files with 16 additions and 2 deletions

View File

@ -48,6 +48,8 @@ in
thunderbird thunderbird
vesktop vesktop
rustdesk-pkg rustdesk-pkg
tor-browser
onionshare
] ++ [ ] ++ [
irssi irssi
]; ];

View File

@ -41,18 +41,30 @@
fsType = "vfat"; fsType = "vfat";
}; };
fileSystems."/srv/mcserver" = fileSystems."/srv/mcserver-old" =
{ device = "/dev/disk/by-uuid/7204ff85-6404-4bd7-ba0d-3fb23a5cf52c"; { device = "/dev/disk/by-uuid/7204ff85-6404-4bd7-ba0d-3fb23a5cf52c";
fsType = "btrfs"; fsType = "btrfs";
options = [ "subvol=@mcserver" ]; options = [ "subvol=@mcserver" ];
}; };
fileSystems."/srv/mcserver/.snapshots" = fileSystems."/srv/mcserver-old/.snapshots" =
{ device = "/dev/disk/by-uuid/7204ff85-6404-4bd7-ba0d-3fb23a5cf52c"; { device = "/dev/disk/by-uuid/7204ff85-6404-4bd7-ba0d-3fb23a5cf52c";
fsType = "btrfs"; fsType = "btrfs";
options = [ "subvol=snapshots/@mcserver" ]; options = [ "subvol=snapshots/@mcserver" ];
}; };
fileSystems."/srv/mcserver" =
{ device = "/dev/disk/by-uuid/e36d1ab4-d18b-434e-80b5-0efca0652eb5";
fsType = "btrfs";
options = [ "subvol=@mcserver" ];
};
fileSystems."/srv/mcserver/.snapshots" =
{ device = "/dev/disk/by-uuid/e36d1ab4-d18b-434e-80b5-0efca0652eb5";
fsType = "btrfs";
options = [ "subvol=snapshots/@mcserver" ];
};
swapDevices = swapDevices =
[ { device = "/dev/disk/by-uuid/4b86cbd6-6fc5-47d4-9d44-35eec59cb785"; } [ { device = "/dev/disk/by-uuid/4b86cbd6-6fc5-47d4-9d44-35eec59cb785"; }
]; ];

Binary file not shown.