nix-config/hosts/common/common.nix
smayzy 589bb177d5
All checks were successful
nixos config pipeline / show-flake (push) Successful in 27s
nixos config pipeline / deploy (push) Successful in 43s
add nfs manual mounting support
2025-10-28 16:19:08 +01:00

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