15 lines
338 B
Nix
15 lines
338 B
Nix
{ lib, ... }:
|
|
|
|
{
|
|
options.user = lib.mkOption {
|
|
type = lib.types.str;
|
|
description = "The username for the Home Manager configuration.";
|
|
};
|
|
|
|
options.profile = lib.mkOption {
|
|
type = lib.types.enum [ "personal" "work" ];
|
|
default = "personal";
|
|
description = "Profile type for the Home Manager configuration.";
|
|
};
|
|
}
|