Files
Nomarchy/features/apps/ghostty/default.nix
Bernardo Magri e6b7269b3c
All checks were successful
Check / eval-and-lint (push) Successful in 6m39s
feat: move core apps to downstream and make app modules opt-in
2026-05-31 15:44:50 +01:00

8 lines
158 B
Nix

{ config, pkgs, lib, ... }:
{
config = lib.mkIf config.nomarchy.apps.ghostty.enable {
xdg.configFile."ghostty/config".source = ./config/config;
};
}