nix-config/hosts/common/common.nix
smayzy cce705e664
All checks were successful
nixos config pipeline / show-flake (push) Successful in 17s
nixos config pipeline / deploy (push) Successful in 54s
change permissions for home dir for qemu
2025-10-19 18:02:47 +02:00

33 lines
454 B
Nix

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