Files
nixos/modules/darwin.nix
T

19 lines
263 B
Nix
Raw Normal View History

2022-09-07 11:28:09 -05:00
{ 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;
};
};
}