Files
nixos/darwin/work/default.nix
T
2023-08-18 13:16:23 -05:00

18 lines
209 B
Nix

{ pkgs, ... }:
{
homebrew = {
enable = true;
brews = [
"packer"
];
casks = [
"gnucash"
"onlyoffice"
"postman"
"vagrant"
];
};
environment.loginShell = "${pkgs.xonsh}/bin/xonsh";
}