nix-config/hosts/common/common.nix
smayzy 092579af98
All checks were successful
nix flake show / show-flake (push) Successful in 27s
format with nixfmt to nixpkgs standarts
2025-07-24 19:19:46 +02:00

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