nixcfg/systems/x86_64-darwin/mpro/default.nix
Harald Hoyer 900f95169f nix fmt
Signed-off-by: Harald Hoyer <harald@hoyer.xyz>
2024-11-19 10:31:29 +01:00

17 lines
236 B
Nix

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