1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-03-11 11:17:03 +00:00
home-manager/tests/modules/programs/earthly/earthly-settings.nix

22 lines
386 B
Nix
Raw Normal View History

{
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}
'';
}