1
0
Fork 0
nixos-config/home-manager/roles/home-options.nix
Malte Brandy 57123b08e1 Reformat
2022-03-08 02:42:46 +01:00

16 lines
299 B
Nix

{lib, ...}: {
options = {
m-0 = {
hostName = lib.mkOption {type = lib.types.str;};
terminal = lib.mkOption {
default = "foot";
type = lib.types.str;
};
colors = lib.mkOption {
default = {};
type = lib.types.attrs;
};
};
};
}