diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-05-24 14:02:14 +0200 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-05-24 14:02:14 +0200 |
commit | 6a6229b921dafd78273b652fef92ceb045663547 (patch) | |
tree | d1496e38a32f5691448297ad5ac9f7bb7f189ab6 /modules/system/services/adb/default.nix | |
parent | fix(modules/system/{tempfiles,services/steam}): Fix typos (diff) | |
download | nixos-config-6a6229b921dafd78273b652fef92ceb045663547.zip |
fix(modules/system/services{adb,backup}): Add `services` to option path
Diffstat (limited to '')
-rw-r--r-- | modules/system/services/adb/default.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/system/services/adb/default.nix b/modules/system/services/adb/default.nix index 4055dbb1..ec5d4be6 100644 --- a/modules/system/services/adb/default.nix +++ b/modules/system/services/adb/default.nix @@ -3,9 +3,9 @@ config, ... }: let - cfg = config.soispha.adb; + cfg = config.soispha.services.adb; in { - options.soispha.adb = { + options.soispha.services.adb = { enable = lib.mkEnableOption "Android adb bridge"; user = lib.mkOption { type = lib.types.str; |