mirror of
https://github.com/nix-community/home-manager.git
synced 2026-01-12 01:59:37 +08:00
Stopping or restarting the service will destroy open Ghostty sessions, potentially disrupting work. This change ensures that we leave the existing service untouched. Fixes #8485
11 lines
283 B
Nix
11 lines
283 B
Nix
{ lib, pkgs, ... }:
|
|
|
|
{
|
|
ghostty-empty-settings = ./empty-settings.nix;
|
|
ghostty-example-settings = ./example-settings.nix;
|
|
ghostty-example-theme = ./example-theme.nix;
|
|
}
|
|
// lib.optionalAttrs pkgs.stdenv.hostPlatform.isLinux {
|
|
ghostty-systemd-service = ./systemd-service.nix;
|
|
}
|