From 5304170d10b7cccd96766d0c439515feef190aa7 Mon Sep 17 00:00:00 2001 From: Random936 Date: Fri, 26 Jul 2024 13:57:35 -0700 Subject: [PATCH] Added ntfs to supported filesystems --- config/omen.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/config/omen.nix b/config/omen.nix index 0c297bf..8bf83b3 100644 --- a/config/omen.nix +++ b/config/omen.nix @@ -13,6 +13,9 @@ boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true; + # Supported Filesystems + boot.supportedFilesystems = [ "ntfs" ]; + # Set hostname networking.hostName = "randomctf";