structural-rework #1

Merged
ghoscht merged 44 commits from structural-rework into main 2023-12-29 10:35:45 +01:00
2 changed files with 6 additions and 0 deletions
Showing only changes of commit 279d309c73 - Show all commits

View file

@ -32,6 +32,7 @@
../common/optional/gamemode.nix
../common/optional/kde-connect.nix
../common/optional/gnome-keyring.nix
../common/optional/adb.nix
];
nixpkgs = {

View file

@ -0,0 +1,5 @@
{vars, ...}: let
in {
programs.adb.enable = true;
users.users.${vars.user}.extraGroups = ["adbusers"];
}