From 1549260ee777d8d777495ddff21295f2cb87d209 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= Date: Fri, 1 Jul 2022 20:17:16 +0200 Subject: nixos: improve console and fix ridcully --- nixos/machine/ridcully.nix | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'nixos/machine/ridcully.nix') diff --git a/nixos/machine/ridcully.nix b/nixos/machine/ridcully.nix index 4c0bba9..7151878 100644 --- a/nixos/machine/ridcully.nix +++ b/nixos/machine/ridcully.nix @@ -23,18 +23,22 @@ with lib; fileSystems = { "/" = { device = "/dev/mapper/encroot"; + fsType = "btrfs"; options = ["compress=lzo" "subvol=@nix"]; }; "/home" = { device = "/dev/mapper/encroot"; + fsType = "btrfs"; options = ["compress=lzo" "subvol=@home"]; }; "/boot" = { device = "/dev/disk/by-uuid/C1A0-B7C9"; + fsType = "vfat"; }; "/home2" = { device = "/dev/mapper/enchdd"; + fsType = "btrfs"; options = ["compress=lzo" "subvol=@home"]; }; }; -- cgit v1.2.3