nix-config/hosts/common/common.nix
smayzy 2dc084b0ea
All checks were successful
nix flake show / show-flake (push) Successful in 40s
mv tshark to base-cli
2025-07-21 15:35:49 +02:00

26 lines
441 B
Nix

{ inputs, config, pkgs, lib, 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" ];
packages = with pkgs; [];
};
environment.systemPackages = with pkgs; [
home-manager
tor
mpv
];
}