1
0
Fork 0
nixos-config/modules/home-options.nix

22 lines
388 B
Nix
Raw Normal View History

2018-04-02 15:52:16 +00:00
{ lib, config, pkgs, ... }:
with lib;
{
options = {
common = {
terminal = mkOption {
default = "urxvt";
type = types.str;
};
colors = mkOption {
default = {};
type = types.attrs;
};
workspaces = mkOption {
default = [ "configure some workspaces" ];
type = types.listOf types.str;
};
};
};
}