18 lines
325 B
Nix
18 lines
325 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: let
|
|
inherit (lib) mkEnableOption mkIf;
|
|
|
|
cfg = config.sneeuwvlok.development.dotnet;
|
|
in {
|
|
options.sneeuwvlok.development.dotnet = {
|
|
enable = mkEnableOption "Enable dotnet development tools";
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
home.packages = with pkgs; [dotnet-sdk_8];
|
|
};
|
|
}
|