mirror of
https://github.com/nix-community/home-manager.git
synced 2025-12-02 15:11:03 +01:00
14 lines
315 B
Nix
14 lines
315 B
Nix
{
|
|
programs.go = {
|
|
enable = true;
|
|
packages = {
|
|
"golang.org/x/text" = ./packages/text;
|
|
"golang.org/x/time" = ./packages/time;
|
|
};
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertFileExists home-files/go/src/golang.org/x/text/main.go
|
|
assertFileExists home-files/go/src/golang.org/x/time/main.go
|
|
'';
|
|
}
|