18 lines
425 B
Nix
18 lines
425 B
Nix
{ config, lib, ... }:
|
|
{
|
|
options.shell = {
|
|
name = lib.mkOption {
|
|
type = lib.types.str;
|
|
#default = "nyx";
|
|
};
|
|
homeDirectory = lib.mkOption {
|
|
type = lib.types.path;
|
|
default = "/home/${config.name}";
|
|
};
|
|
email = lib.mkOption {
|
|
type = lib.types.str;
|
|
#default = "${config.name}@configureme.guv";
|
|
};
|
|
};
|
|
}
|