From 5993b1a8e82dc46d084e85e5874f564cc3f78a9a Mon Sep 17 00:00:00 2001
From: David Bernet <david.bernet@student.uni-halle.de>
Date: Sun, 6 Oct 2024 16:49:36 +0000
Subject: [PATCH] Update configuration.nix

---
 nixos/nixos/configuration.nix | 19 +++++++++++++------
 1 file changed, 13 insertions(+), 6 deletions(-)

diff --git a/nixos/nixos/configuration.nix b/nixos/nixos/configuration.nix
index 949c281..10bd9e2 100644
--- a/nixos/nixos/configuration.nix
+++ b/nixos/nixos/configuration.nix
@@ -13,6 +13,13 @@
   # Bootloader.
   boot.loader.systemd-boot.enable = true;
   boot.loader.efi.canTouchEfiVariables = true;
+  boot.supportedFilesystems = [ "ntfs" ];
+
+  fileSystems."/home/hexe/Dokumente/mnt" =
+    { device = "/dev/sdb1";
+      fsType = "ntfs"; 
+      options = [ "rw" "uid=1000"];
+    };
 
   networking.hostName = "artefakt"; # Define your hostname.
   # networking.wireless.enable = true;  # Enables wireless support via wpa_supplicant.
@@ -104,11 +111,11 @@
         vscode
         cargo
         obsidian
-        pavucontrol
-        rpi-imager
-        transmission
-        transmission-gtk
-        gnome.gnome-disk-utility
+	pavucontrol
+	rpi-imager
+	transmission
+	transmission-gtk
+	gnome.gnome-disk-utility
 	
     ];
   };
@@ -156,4 +163,4 @@
   # (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
   system.stateVersion = "24.05"; # Did you read the comment?
 
-}
+}
\ No newline at end of file
-- 
GitLab