hosts: move adb into a module

Signed-off-by: Amneesh Singh <natto@weirdnatto.in>
This commit is contained in:
2025-06-29 17:28:47 +05:30
parent 8d3bbe9d75
commit 6c1400e295
3 changed files with 6 additions and 4 deletions

View File

@@ -11,6 +11,7 @@ let
} }
]; ];
desktopModules = [ desktopModules = [
./modules/adb
./xorg.nix ./xorg.nix
./wayland.nix ./wayland.nix
./desktop-pkgs.nix ./desktop-pkgs.nix

View File

@@ -1,4 +1,4 @@
{ lib, config, inputs, pkgs, ... }: { pkgs, ... }:
{ {
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
@@ -29,8 +29,5 @@
enable = true; enable = true;
}; };
}; };
adb.enable = true;
gamemode.enable = true;
}; };
} }

View File

@@ -0,0 +1,4 @@
{ ... }:
{
programs.adb.enable = true;
}