17 lines
330 B
Nix
17 lines
330 B
Nix
{
|
|
config,
|
|
inputs,
|
|
lib,
|
|
...
|
|
}:
|
|
{
|
|
options.my.shell.exercism = {
|
|
enable = lib.mkEnableOption "Exercism coding practice platform";
|
|
users = lib.mkOption {
|
|
type = inputs.self.lib.usersOptionType lib;
|
|
default = config.my.toggleUsers.shell;
|
|
description = "Users to install Exercism for";
|
|
};
|
|
};
|
|
}
|