diff options
Diffstat (limited to 'nixos/home.nix')
| -rw-r--r-- | nixos/home.nix | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/nixos/home.nix b/nixos/home.nix index 2f7fbf1..458b270 100644 --- a/nixos/home.nix +++ b/nixos/home.nix @@ -3,10 +3,11 @@ users.users.aargh = { isNormalUser = true; description = "Aargh"; - extraGroups = [ "networkmanager" "wheel" ]; + extraGroups = [ "networkmanager" "wheel" "kvm" "adbusers" ]; packages = with pkgs; []; shell = pkgs.fish; }; + programs.adb.enable = true; programs.fish.enable = true; home-manager.users.aargh = { pkgs, ... }: { programs.firefox.enable = true; |
