mirror of
https://github.com/Nickiel12/nicks-nix-config.git
synced 2024-11-22 12:49:32 -08:00
added android app adb
This commit is contained in:
parent
2ca63373e5
commit
e34475b4b1
3 changed files with 14 additions and 3 deletions
|
@ -18,6 +18,10 @@
|
|||
enableKwallet = true;
|
||||
};
|
||||
|
||||
services.udev.packages = [
|
||||
pkgs.android-udev-rules
|
||||
];
|
||||
|
||||
# Some programs look for session variables to store config files at
|
||||
# (Looking at you home-manager yazi)
|
||||
environment.sessionVariables = rec {
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ config, ... }:
|
||||
{ config, user, ... }:
|
||||
|
||||
|
||||
{
|
||||
|
@ -7,6 +7,9 @@
|
|||
./hardware-configuration.nix
|
||||
];
|
||||
|
||||
programs.adb.enable = true;
|
||||
users.users.${user}.extraGroups = [ "adbusers" ];
|
||||
|
||||
networking = {
|
||||
firewall = {
|
||||
checkReversePath = "loose";
|
||||
|
|
|
@ -1,10 +1,14 @@
|
|||
{ config, ... }:
|
||||
{ config, user, ... }:
|
||||
|
||||
{ imports = [
|
||||
{
|
||||
imports = [
|
||||
(import ./../../modules/xrdp.nix)
|
||||
./hardware-configuration.nix
|
||||
];
|
||||
|
||||
programs.adb.enable = true;
|
||||
users.users.${user}.extraGroups = [ "adbusers" ];
|
||||
|
||||
hardware.bluetooth.enable = true;
|
||||
|
||||
networking.hosts = {
|
||||
|
|
Loading…
Reference in a new issue