mirror of
https://github.com/nix-community/home-manager
synced 2025-02-02 14:25:04 +01:00
23 lines
443 B
Nix
23 lines
443 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
programs.go = {
|
|
enable = true;
|
|
telemetry = {
|
|
mode = "on";
|
|
date = "2006-01-02";
|
|
};
|
|
};
|
|
|
|
nm.script = let
|
|
modeFileDir = if !pkgs.stdenv.isDarwin then
|
|
".config/go/telemetry"
|
|
else
|
|
"Library/Application Support/go/telemetry";
|
|
in ''
|
|
assertFileExists "home-files/${modeFileDir}/mode"
|
|
assertFileContent \
|
|
"home-files/${modeFileDir}/mode" \
|
|
"on 2006-01-02"
|
|
'';
|
|
}
|