diff options
author | Karel Kočí <cynerd@email.cz> | 2024-10-17 15:37:56 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2024-10-17 15:37:56 +0200 |
commit | 846e847fee79cc54b0ad5284020f46ecd79ded21 (patch) | |
tree | 2ed8067ce13186b52d3f5ab22e0377ad079b0376 /nixos/configurations/errol.nix | |
parent | 0662c2dc1955b07f64f641edecfb2278e10dd3f1 (diff) | |
download | nixos-personal-846e847fee79cc54b0ad5284020f46ecd79ded21.tar.gz nixos-personal-846e847fee79cc54b0ad5284020f46ecd79ded21.tar.bz2 nixos-personal-846e847fee79cc54b0ad5284020f46ecd79ded21.zip |
nixos/backup: add backup configuration
Diffstat (limited to 'nixos/configurations/errol.nix')
-rw-r--r-- | nixos/configurations/errol.nix | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/nixos/configurations/errol.nix b/nixos/configurations/errol.nix index fd348e8..407cf82 100644 --- a/nixos/configurations/errol.nix +++ b/nixos/configurations/errol.nix @@ -26,6 +26,7 @@ in { "encroot" = "/dev/disk/by-uuid/7c412ae6-6016-45af-8c2a-8fcc394dbbe6"; "enchdd1" = "/dev/disk/by-uuid/87f16080-5ff6-43dd-89f3-307455a46fbe"; "enchdd2" = "/dev/disk/by-uuid/be4a33fa-8bc6-431d-a3ac-787668f223ed"; + #"encback" = "/dev/disk/by-uuid/1bd8c637-f71e-4fb0-96de-b660c4f1afaf"; }; fileSystems = { "/" = { @@ -53,6 +54,11 @@ in { fsType = "btrfs"; options = ["compress=lzo" "subvol=@home"]; }; + #"/back" = { + # device = "/dev/mapper/encback"; + # fsType = "btrfs"; + # options = ["compress=lzo"]; + #}; }; services.btrfs.autoScrub = { enable = true; |