mirror of
https://github.com/nix-community/home-manager.git
synced 2025-03-11 11:17:03 +00:00
22 lines
386 B
Nix
22 lines
386 B
Nix
|
{
|
||
|
programs.earthly = {
|
||
|
enable = true;
|
||
|
|
||
|
settings = {
|
||
|
global.disable_analytics = true;
|
||
|
|
||
|
git."github.com" = {
|
||
|
auth = "ssh";
|
||
|
user = "username";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
|
||
|
test.stubs.earthly = { };
|
||
|
|
||
|
nmt.script = ''
|
||
|
assertFileExists home-files/.earthly/config.yml
|
||
|
assertFileContent home-files/.earthly/config.yml ${./earthly-settings.yml}
|
||
|
'';
|
||
|
}
|