17 lines
201 B
Nix
17 lines
201 B
Nix
|
{ lib, pkgs, ... }:
|
||
|
|
||
|
with lib.metacfg;
|
||
|
{
|
||
|
metacfg = {
|
||
|
suites = {
|
||
|
common = enabled;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
environment.systemPath = [
|
||
|
"/usr/local/Homebrew/bin"
|
||
|
];
|
||
|
|
||
|
system.stateVersion = 4;
|
||
|
}
|