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