aboutsummaryrefslogtreecommitdiffstats
path: root/modules/by-name/ad
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-10-18 17:07:46 +0200
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-10-18 17:07:46 +0200
commitc52c7f314ccadcc2fcd91e28c8fd1b88f6d5ce0c (patch)
treee8b947710b467b32740598ff574982097836f66c /modules/by-name/ad
parentchore(pkgs/yt): 1.2.1 -> 1.3.0 (diff)
downloadnixos-config-c52c7f314ccadcc2fcd91e28c8fd1b88f6d5ce0c.zip
refactor(modules): Move all system modules to `by-name`
From now on all modules should be added to the new `by-name` directory. This should help remove the (superficial and utterly useless) distinction between `home-manager` and `NixOS` modules.
Diffstat (limited to 'modules/by-name/ad')
-rw-r--r--modules/by-name/ad/adb/module.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/modules/by-name/ad/adb/module.nix b/modules/by-name/ad/adb/module.nix
new file mode 100644
index 00000000..ec5d4be6
--- /dev/null
+++ b/modules/by-name/ad/adb/module.nix
@@ -0,0 +1,22 @@
+{
+ lib,
+ config,
+ ...
+}: let
+ cfg = config.soispha.services.adb;
+in {
+ options.soispha.services.adb = {
+ enable = lib.mkEnableOption "Android adb bridge";
+ user = lib.mkOption {
+ type = lib.types.str;
+ example = "soispha";
+ default = "soispha";
+ description = "Username to grant access to adb bridge";
+ };
+ };
+
+ config = lib.mkIf cfg.enable {
+ programs.adb.enable = true;
+ users.users."${cfg.user}".extraGroups = ["adbusers"];
+ };
+}