Loki: re-enabling services

This commit is contained in:
Filippo Berto 2023-03-09 23:31:12 +01:00
parent 723ba0ab6a
commit 507ed80b96
Signed by: bertof
GPG key ID: 9DBF7E6A1D2CE9ED
2 changed files with 192 additions and 194 deletions

View file

@ -14,6 +14,7 @@
fileSystems."/" = {
device = "/dev/disk/by-uuid/44c53e75-a00d-47bc-a99b-2544fe513e51";
fsType = "btrfs";
options = [ "compress=lzo" ];
};
fileSystems."/boot" = {
@ -24,21 +25,25 @@
fileSystems."/home/bertof" = {
device = "/dev/disk/by-partlabel/5T";
fsType = "btrfs";
options = [ "subvol=@bertof" ];
options = [ "subvol=@bertof" "compress=lzo" ];
};
fileSystems."/home/tiziano" = {
device = "/dev/disk/by-partlabel/5T";
fsType = "btrfs";
options = [ "subvol=@tiziano" ];
options = [ "subvol=@tiziano" "compress=lzo" ];
};
swapDevices = [
{
device = "/swapfile";
size = 1024 * 4;
}
];
fileSystems."/mnt/condiviso" = {
device = "/dev/disk/by-partlabel/5T";
fsType = "btrfs";
options = [ "subvol=@condiviso" "compress=lzo" ];
};
swapDevices = [{
device = "/swapfile";
size = 1024 * 4;
}];
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
# (the default) this is the recommended approach. When using systemd-networkd it's