1
0
Fork 0
nixos-config/modules/home-options.nix
2018-04-02 17:52:16 +02:00

22 lines
388 B
Nix

{ 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;
};
};
};
}