mirror of
https://github.com/Nickiel12/nicks-nix-config.git
synced 2024-11-22 20:59: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;
|
enableKwallet = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
services.udev.packages = [
|
||||||
|
pkgs.android-udev-rules
|
||||||
|
];
|
||||||
|
|
||||||
# Some programs look for session variables to store config files at
|
# Some programs look for session variables to store config files at
|
||||||
# (Looking at you home-manager yazi)
|
# (Looking at you home-manager yazi)
|
||||||
environment.sessionVariables = rec {
|
environment.sessionVariables = rec {
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ config, ... }:
|
{ config, user, ... }:
|
||||||
|
|
||||||
|
|
||||||
{
|
{
|
||||||
|
@ -7,6 +7,9 @@
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
|
programs.adb.enable = true;
|
||||||
|
users.users.${user}.extraGroups = [ "adbusers" ];
|
||||||
|
|
||||||
networking = {
|
networking = {
|
||||||
firewall = {
|
firewall = {
|
||||||
checkReversePath = "loose";
|
checkReversePath = "loose";
|
||||||
|
|
|
@ -1,10 +1,14 @@
|
||||||
{ config, ... }:
|
{ config, user, ... }:
|
||||||
|
|
||||||
{ imports = [
|
{
|
||||||
|
imports = [
|
||||||
(import ./../../modules/xrdp.nix)
|
(import ./../../modules/xrdp.nix)
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
|
programs.adb.enable = true;
|
||||||
|
users.users.${user}.extraGroups = [ "adbusers" ];
|
||||||
|
|
||||||
hardware.bluetooth.enable = true;
|
hardware.bluetooth.enable = true;
|
||||||
|
|
||||||
networking.hosts = {
|
networking.hosts = {
|
||||||
|
|
Loading…
Reference in a new issue