This commit is contained in:
Miguel Palhas
2025-06-29 16:59:17 +01:00
parent 7f6cd33011
commit b25f09af9c
3 changed files with 19 additions and 0 deletions
+1
View File
@@ -62,6 +62,7 @@
import nixpkgs {
inherit system;
config.allowUnfree = true;
config.android_sdk.accept_license = true;
overlays = [
inputs.foundry.overlay
inputs.hyprpanel.overlay
+17
View File
@@ -0,0 +1,17 @@
{ pkgs, ... }:
{
users.users.naps62.extraGroups = [
"kvm"
"adbusers"
];
programs.adb.enable = true;
services.udev.packages = with pkgs; [
android-udev-rules
];
environment.systemPackages = with pkgs; [
android-studio
];
}
+1
View File
@@ -17,6 +17,7 @@
../common/features/nix-ld.nix
../common/features/bluetooth.nix
../common/features/ledger.nix
../common/features/android-studio.nix
];
networking.hostName = "konishi";