mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-09 23:22:57 +00:00
28 lines
472 B
Nix
28 lines
472 B
Nix
{ lib, ... }: {
|
|
|
|
imports = [ ./system.nix ./tmux.nix ./utilities.nix ./hammerspoon.nix ];
|
|
|
|
|
|
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";
|
|
};
|
|
|
|
};
|
|
};
|
|
|
|
}
|