nix-config/hosts/common/common.nix
smayzy 23f407b824
All checks were successful
nix flake show / show-flake (push) Successful in 30s
remove mpv
2025-08-08 18:46:37 +02:00

33 lines
445 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
];
}