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 -1
View File
@@ -1,3 +1,3 @@
{
imports = [./audio.nix ./binfmt.nix ./bluetooth.nix ./steam.nix ./udisks.nix ./virtualization.nix];
imports = [./audio.nix ./binfmt.nix ./bluetooth.nix ./steam.nix ./virtualization.nix];
}
-19
View File
@@ -1,19 +0,0 @@
{
lib,
config,
pkgs,
...
}: let
isEnabled =
config.azos.udisks.enable;
in {
options.azos.udisks.enable = lib.mkOption {
default = true;
example = true;
type = lib.types.bool;
};
config = lib.mkIf isEnabled {
services.udisks2.enable = true;
};
}