nix-config/hosts/common/common.nix
smayzy 0210a58bf5
Some checks failed
nixos config pipeline / show-flake (push) Successful in 30s
nixos config pipeline / deploy (push) Has been cancelled
update | fix wallpaper | remove adb | disable tas
2026-01-17 11:34:13 +01:00

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