Files
nixos/darwin/work/default.nix
T

20 lines
237 B
Nix

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