Simplified input argument structures across multiple Nix modules by removing unnecessary bindings and standardizing formats. Enabled `system.primaryUser` setting and updated PAM configuration for sudo touch ID authentication. Removed deprecated or unused configurations, including user fields in metacfg and outdated options in some modules.
51 lines
746 B
Nix
51 lines
746 B
Nix
{ lib, pkgs, ... }:
|
|
|
|
with lib.metacfg;
|
|
{
|
|
homebrew = {
|
|
enable = true;
|
|
brews = [
|
|
"libusb"
|
|
"mas"
|
|
];
|
|
masApps = { };
|
|
onActivation = {
|
|
cleanup = "zap";
|
|
autoUpdate = true;
|
|
upgrade = true;
|
|
};
|
|
};
|
|
|
|
metacfg = {
|
|
system.homebrew = enabled;
|
|
suites = {
|
|
common = enabled;
|
|
};
|
|
tools = {
|
|
direnv.enable = true;
|
|
alacritty.enable = true;
|
|
};
|
|
};
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
kubectl
|
|
kubectx
|
|
k9s
|
|
attic-client
|
|
imagemagick
|
|
gh
|
|
libvirt
|
|
dnsmasq
|
|
virt-manager
|
|
qemu
|
|
claude-code
|
|
nodejs
|
|
goose-cli
|
|
aider-chat
|
|
];
|
|
|
|
users.users.harald.shell = pkgs.fish;
|
|
|
|
ids.gids.nixbld = 350;
|
|
system.stateVersion = 4;
|
|
}
|