1
0
Fork 0
nixos-config/home-manager/modules/home-options.nix
Malte Brandy c18bcabd31
WIP
2018-05-31 12:34:48 +02:00

22 lines
354 B
Nix

{ lib, config, pkgs, ... }:
with lib;
{
options = {
m-0 = {
terminal = mkOption {
default = "urxvt";
type = types.str;
};
colors = mkOption {
default = {};
type = types.attrs;
};
workspaces = mkOption {
default = [ "configure some workspaces" ];
type = types.listOf types.str;
};
};
};
}