nix-config/hosts/common/common.nix
smayzy a5f666c221
All checks were successful
nix flake show / show-flake (push) Successful in 1m5s
clean hosts dir & update
2025-07-23 18:39:39 +02:00

24 lines
390 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
];
}