From 4026a7baa67abb779750edfb3cbc9fcbeda5d044 Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Tue, 27 Apr 2021 18:17:06 +0200 Subject: [PATCH] boreal: NTFS mount support --- hosts/boreal/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/hosts/boreal/default.nix b/hosts/boreal/default.nix index 13b0135..e31549c 100644 --- a/hosts/boreal/default.nix +++ b/hosts/boreal/default.nix @@ -18,6 +18,11 @@ in boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true; + boot.supportedFilesystems = [ + "btrfs" + "ntfs" + ]; + services.btrfs = { autoScrub = { enable = true;