mirror of
https://github.com/nix-community/home-manager
synced 2025-01-27 11:25:02 +01:00
18 lines
324 B
Nix
18 lines
324 B
Nix
|
{ 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}
|
||
|
'';
|
||
|
}
|