NTFS support

This commit is contained in:
Daniel Langbein 2023-09-20 13:37:48 +02:00
parent 2f0c7ffdbe
commit e1dd1c3cbd
Signed by: langfingaz
GPG Key ID: 6C47C753F0823002
4 changed files with 9 additions and 0 deletions

View File

@ -51,6 +51,7 @@ in
../../modules/sendmail-mta.nix
../../modules/journalwatch.nix
#../../modules/waydroid.nix
../../modules/ntfs.nix
];
networking.hostName = "yodaTab";

View File

@ -51,6 +51,7 @@ in
../../modules/sendmail-mta.nix
../../modules/journalwatch.nix
#../../modules/waydroid.nix
../../modules/ntfs.nix
];
networking.hostName = "yodaTux";

View File

@ -53,6 +53,7 @@ in
../../modules/sendmail-mta.nix
../../modules/journalwatch.nix
#../../modules/waydroid.nix
#../../modules/ntfs.nix
];
networking.hostName = "yodaYoga";

6
modules/ntfs.nix Normal file
View File

@ -0,0 +1,6 @@
{ config, pkgs, ... }:
{
# https://nixos.wiki/wiki/NTFS
boot.supportedFilesystems = [ "ntfs" ];
}