Files
nixos/modules/darwin.nix
T
2022-09-07 11:28:09 -05:00

19 lines
263 B
Nix

{ config, lib, ... }:
let
cfg = config.greg.darwin;
in with lib; {
options = {
greg.darwin = mkEnableOption "This system is Darwin";
};
config = mkIf cfg {
system.stateVersion = 4;
programs = {
zsh.enable = true;
bash.enable = true;
};
};
}