nixcfg/systems/x86_64-darwin/mpro/default.nix

17 lines
236 B
Nix
Raw Normal View History

2024-03-21 15:00:36 +01:00
{ lib, pkgs, ... }:
with lib.metacfg;
{
metacfg = {
suites = {
common = enabled;
};
};
environment.systemPath = [ "/usr/local/Homebrew/bin" ];
2024-03-21 15:00:36 +01:00
users.users.harald.shell = pkgs.fish;
2024-03-21 15:00:36 +01:00
system.stateVersion = 4;
}