mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-08 11:36:05 +01:00
11 lines
216 B
Nix
11 lines
216 B
Nix
{ config, ... }:
|
|
{
|
|
programs.ghostty = {
|
|
enable = true;
|
|
package = config.lib.test.mkStubPackage { outPath = null; };
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertPathNotExists home-files/.config/ghostty/config
|
|
'';
|
|
}
|