dotfiles/modules/darwin/default.nix

34 lines
524 B
Nix
Raw Normal View History

2022-06-18 17:17:11 +00:00
{ lib, ... }: {
2022-06-14 11:54:18 +00:00
2022-06-19 12:38:44 +00:00
imports = [
./system.nix
./user.nix
./tmux.nix
./utilities.nix
./hammerspoon.nix
./alacritty.nix
];
2022-06-18 17:17:11 +00:00
options = with lib; {
user = mkOption {
type = types.str;
description = "Primary user of the system";
};
gui = {
enable = mkEnableOption {
description = "Enable graphics";
default = false;
};
colorscheme = mkOption {
type = types.attrs;
description = "Base16 color scheme";
};
};
};
2022-06-14 11:54:18 +00:00
}