1
0
Fork 0
mirror of https://github.com/nix-community/home-manager synced 2025-01-27 11:25:02 +01:00
home-manager/tests/modules/programs/ghostty/example-settings.nix

18 lines
324 B
Nix
Raw Normal View History

2024-12-26 20:01:54 -03:00
{ config, ... }: {
programs.ghostty = {
enable = true;
package = config.lib.test.mkStubPackage { };
settings = {
theme = "catppuccin-mocha";
font-size = 10;
};
};
nmt.script = ''
assertFileContent \
home-files/.config/ghostty/config \
${./example-config-expected}
'';
}