Files
nixos/darwin/work/default.nix
T

22 lines
262 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"
2024-02-08 23:52:59 -06:00
"direnv"
2023-08-14 09:52:44 -05:00
];
casks = [
2024-03-28 09:36:58 -05:00
"alt-tab"
2023-08-14 09:52:44 -05:00
"gnucash"
2023-11-30 08:38:44 -06:00
"insomnia"
2023-08-14 09:52:44 -05:00
"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
}