Moved autmounting to core

This commit is contained in:
2026-05-12 09:01:11 +03:00
parent f89e04d898
commit 83c279ded4
7 changed files with 4 additions and 138 deletions
-1
View File
@@ -19,6 +19,5 @@
./snx-rs.nix
./ytdl.nix
./nextcloud-client.nix
./udiskie.nix
];
}
-22
View File
@@ -1,22 +0,0 @@
{
lib,
config,
pkgs,
...
}: let
isEnabled =
config.azos.udiskie.enable;
in {
options.azos.udiskie.enable = lib.mkOption {
default = true;
example = true;
type = lib.types.bool;
};
config = lib.mkIf isEnabled {
services.udiskie = {
enable = true;
tray = "never";
};
};
}