Harald Hoyer
3953362456
Refactor various NixOS and home-manager configurations to improve consistency and readability. Correct naming inconsistencies, ensure proper indentation, and restructure Samba settings for better clarity and maintainability.
43 lines
589 B
Nix
43 lines
589 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;
|
|
};
|
|
};
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
# azure-cli
|
|
kubectl
|
|
kubectx
|
|
k9s
|
|
attic-client
|
|
ollama
|
|
];
|
|
|
|
users.users.harald.shell = pkgs.fish;
|
|
|
|
system.stateVersion = 4;
|
|
}
|