feat: mounts

This commit is contained in:
punkfairie 2025-05-25 17:37:22 -07:00
parent 809e11313a
commit 99623ce473
Signed by: punkfairie
GPG key ID: B3C5488E9A1A7CA6
5 changed files with 14 additions and 17 deletions

View file

@ -5,6 +5,7 @@
./fonts.nix
./home.nix
./i18n.nix
./mounts
./networking.nix
./nix.nix
./stylix.nix

View file

@ -0,0 +1,7 @@
{
boot.supportedFilesystems = {
ntfs = true;
};
services.udisks2.enable = true;
}

View file

@ -0,0 +1,6 @@
{
imports = [
./automounts.nix
./babeshare.nix
];
}

View file

@ -1,17 +0,0 @@
{
lib,
config,
...
}: let
cfg = config.marleyos.mounts.automounts;
in {
options.marleyos.mounts.automounts.enable = lib.mkEnableOption "automounts";
config = lib.mkIf cfg.enable {
boot.supportedFilesystems = {
ntfs = true;
};
services.udisks2.enable = true;
};
}