1
0
Fork 0
nixos-config/home/modules/home-options.nix
2019-08-02 05:17:05 +02:00

22 lines
436 B
Nix

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