14 lines
164 B
Nix
14 lines
164 B
Nix
|
{ ... }:
|
||
|
{
|
||
|
homebrew = {
|
||
|
enable = true;
|
||
|
casks = [
|
||
|
"karabiner-elements"
|
||
|
"vlc"
|
||
|
];
|
||
|
taps = [
|
||
|
"railwaycat/emacsmacport"
|
||
|
];
|
||
|
};
|
||
|
}
|