From 6e5f40add659c464169f39de74cd1653a9025fe6 Mon Sep 17 00:00:00 2001 From: L-Nafaryus Date: Sun, 1 Dec 2024 23:06:59 +0500 Subject: [PATCH] astora: test adb --- nixosConfigurations/astora/users.nix | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/nixosConfigurations/astora/users.nix b/nixosConfigurations/astora/users.nix index e7cc987..8063a26 100644 --- a/nixosConfigurations/astora/users.nix +++ b/nixosConfigurations/astora/users.nix @@ -13,7 +13,7 @@ in { users.users.l-nafaryus = { isNormalUser = true; description = "L-Nafaryus"; - extraGroups = ["networkmanager" "wheel" "audio" "libvirtd" "input" "video" "disk" "wireshark"]; + extraGroups = ["networkmanager" "wheel" "audio" "libvirtd" "input" "video" "disk" "wireshark" "adbusers"]; group = "users"; uid = 1000; initialPassword = "nixos"; @@ -394,7 +394,7 @@ in { }; # Services - #services.spoofdpi.enable = true; + services.spoofdpi.enable = true; #services.zapret = { # enable = true; @@ -458,4 +458,8 @@ in { hostKeyAlgorithms = ["ssh-ed25519" "ssh-rsa"]; startAgent = true; }; + + programs.adb.enable = true; + + services.udev.packages = [pkgs.android-udev-rules]; }