nixcfg/systems/x86_64-darwin/mpro/default.nix
2024-03-21 15:00:36 +01:00

17 lines
201 B
Nix

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