Files
nixos/darwin/work/default.nix
T

19 lines
223 B
Nix
Raw Normal View History

2022-09-06 11:41:09 -05:00
{ pkgs, ... }:
{
2023-08-14 09:52:44 -05:00
homebrew = {
enable = true;
brews = [
"packer"
];
casks = [
"gnucash"
"onlyoffice"
2023-10-06 09:45:59 -05:00
"pgadmin4"
2023-08-14 09:52:44 -05:00
"postman"
"vagrant"
];
};
2023-08-18 13:16:23 -05:00
environment.loginShell = "${pkgs.xonsh}/bin/xonsh";
2022-09-06 11:41:09 -05:00
}