nix-config/hosts/common/common.nix
smayzy 27bc4cf9a4
All checks were successful
nix flake show / show-flake (push) Successful in 32s
add chromium and android toolkit
2025-07-30 11:40:34 +02:00

34 lines
453 B
Nix

{
inputs,
pkgs,
overlays,
...
}:
{
imports = [
inputs.home-manager.nixosModules.home-manager
../../modules/nix/default.nix
];
nixpkgs.overlays = overlays;
users.users.smayzy = {
isNormalUser = true;
description = "smayzy";
extraGroups = [
"networkmanager"
"wheel"
"adbusers"
];
};
programs.adb.enable = true;
environment.systemPackages = with pkgs; [
home-manager
mpv
];
}