mirror of
https://github.com/kaesaecracker/nixos-configuration.git
synced 2025-01-18 18:40:14 +01:00
opt out of dotnet telemetry
This commit is contained in:
parent
885d7e9d26
commit
61ba08a9bf
|
@ -23,9 +23,14 @@ in {
|
||||||
];
|
];
|
||||||
})
|
})
|
||||||
(lib.mkIf cfg.dotnet {
|
(lib.mkIf cfg.dotnet {
|
||||||
environment.systemPackages = with pkgs; [
|
environment = {
|
||||||
|
systemPackages = with pkgs; [
|
||||||
dotnet-sdk_8
|
dotnet-sdk_8
|
||||||
];
|
];
|
||||||
|
variables = {
|
||||||
|
DOTNET_CLI_TELEMETRY_OPTOUT = "1";
|
||||||
|
};
|
||||||
|
};
|
||||||
})
|
})
|
||||||
(lib.mkIf cfg.rust {
|
(lib.mkIf cfg.rust {
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
|
|
Loading…
Reference in a new issue