nix-config/hosts/common/common.nix
smayzy c4cf3d1ba8
All checks were successful
nixos config pipeline / show-flake (push) Successful in 24s
nixos config pipeline / deploy (push) Successful in 41s
add dialout group for arduino ide to upload sketch
2025-11-13 16:55:03 +01:00

36 lines
512 B
Nix

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