diff options
author | ene <ene@sils.li> | 2023-01-14 12:00:05 +0100 |
---|---|---|
committer | ene <ene@sils.li> | 2023-01-14 12:00:05 +0100 |
commit | a96d535bdaa979d645cb6d24b8a0602118900797 (patch) | |
tree | 8b66967cf823ba480a1d17cb9537d15b03c09177 | |
parent | Merge pull request 'Format: First formatting with Alejandra' (#2) from ene/ni... (diff) | |
download | nixos-server-a96d535bdaa979d645cb6d24b8a0602118900797.tar.gz nixos-server-a96d535bdaa979d645cb6d24b8a0602118900797.zip |
Feat: Added support for btrfs
-rw-r--r-- | hardware-configuration.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hardware-configuration.nix b/hardware-configuration.nix index c4fe39a..cb9d265 100644 --- a/hardware-configuration.nix +++ b/hardware-configuration.nix @@ -5,6 +5,6 @@ boot.initrd.kernelModules = ["nvme" "btrfs"]; fileSystems."/" = { device = "/dev/vda3"; - fsType = "ext4"; + fsType = "btrfs"; }; } |