1
0
Fork 0
nixos-config/home-manager/roles/home-options.nix

18 lines
306 B
Nix
Raw Normal View History

2020-05-27 13:20:08 +00:00
{ lib, ... }: {
options = {
m-0 = {
hostName = lib.mkOption { type = lib.types.str; };
terminal = lib.mkOption {
2022-03-07 18:40:12 +00:00
default = "foot";
2020-05-27 13:20:08 +00:00
type = lib.types.str;
};
colors = lib.mkOption {
default = { };
type = lib.types.attrs;
};
};
};
}