Files
nixos/darwin/hosts/lithic/default.nix
T
Greg Hellings 14c7f34108
buildbot/nix-eval Build done.
buildbot/nix-build gitea:greg/nixos#checks.aarch64-darwin Build done.
buildbot/nix-build gitea:greg/nixos#checks.aarch64-linux Build done.
buildbot/nix-build gitea:greg/nixos#checks.x86_64-linux Build done.
buildbot/nix-build Build done.
Update manifest chart versions / update-manifests (push) Has been cancelled
Update flake.lock / update-flake-lock (push) Has been cancelled
chore: lithic stuff
2026-04-08 08:00:35 -05:00

54 lines
828 B
Nix

{ config, ... }:
let
username = "greg";
in
{
greg = {
nix.cache = false;
};
homebrew = {
enable = true;
brews = [
"bitwarden-cli"
"direnv"
"github-mcp-server"
{
name = "libvirt";
restart_service = true;
}
"mcp-atlassian"
"notion-mcp-server"
"nushell"
"qemu"
"slack-mcp-server"
"zlib"
];
casks = [
"alt-tab"
"audacity"
"bitwarden"
"bruno"
"chromium"
"claude-code"
"dbeaver-community"
"ghostty"
"firefox"
"notion"
"notunes"
"onlyoffice"
"podman-desktop"
"tabby"
"zed"
];
user = username;
};
system.primaryUser = username;
users.users."${username}" = {
name = username;
home = "/Users/${username}";
};
}