mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-12 23:42:56 +00:00
35 lines
543 B
Nix
35 lines
543 B
Nix
{ lib, ... }: {
|
|
|
|
imports = [
|
|
./system.nix
|
|
./user.nix
|
|
./tmux.nix
|
|
./utilities.nix
|
|
./hammerspoon.nix
|
|
./alacritty.nix
|
|
./homebrew.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";
|
|
};
|
|
|
|
};
|
|
};
|
|
|
|
}
|