1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-01 04:23:34 +02:00
home-manager/tests/modules/programs/fastfetch/default-configuration.nix
2024-05-02 03:44:19 +02:00

12 lines
274 B
Nix

{
programs.fastfetch.enable = true;
test.stubs.fastfetch = { };
nmt.script = let config-file = "home-files/.config/fastfetch/config.jsonc";
in ''
assertFileExists "${config-file}"
assertFileContent "${config-file}" ${./default-configuration.jsonc}
'';
}