Loki: re-enabling services
This commit is contained in:
parent
723ba0ab6a
commit
507ed80b96
2 changed files with 192 additions and 194 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue