nix-config/hosts/common/common.nix
smayzy 6624ebeff3
All checks were successful
nixos config pipeline / show-flake (push) Successful in 34s
nixos config pipeline / deploy (push) Successful in 26s
move wireshark to mudule and correct permitions
2025-08-14 12:09:44 +02:00

32 lines
432 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"
"wireshark"
];
};
environment.systemPackages = with pkgs; [
home-manager
];
}