feat: add li host
buildbot/nix-eval Build done. (1 warning)
buildbot/nix-build Build done.
buildbot/nix-effects Build done.

This commit is contained in:
Greg Hellings
2026-04-06 08:43:41 -05:00
parent aee34e5b86
commit 0d70a9e018
7 changed files with 117 additions and 57 deletions
+1
View File
@@ -40,4 +40,5 @@ in
{
"MacBook-Pro" = mac { name = "ivr"; };
"MacBook-Prolocal" = mac { name = "ivr"; };
"li" = mac { name = "li"; };
}
+47
View File
@@ -0,0 +1,47 @@
{ ... }:
let
username = "gregory.hellings";
in
{
greg = {
nix.cache = false;
};
homebrew = {
enable = true;
brews = [
"bitwarden-cli"
"direnv"
{
name = "libvirt";
restart_service = true;
}
"nushell"
"qemu"
];
casks = [
"alt-tab"
"audacity"
"bitwarden"
"bruno"
"chromium"
"dbeaver-community"
"ghostty"
"firefox"
"notunes"
"onlyoffice"
"podman-desktop"
"tabby"
"zed"
"zoom"
];
user = username;
};
system.primaryUser = username;
users.users."${username}" = {
name = username;
home = "/Users/${username}";
};
}