Delete ghostty configuration

This commit is contained in:
Oliver Davies 2025-01-07 18:00:00 +00:00
parent 279ce3ebf4
commit 384c9aadb1
4 changed files with 0 additions and 44 deletions
nix/modules/home-manager/features/desktop

View file

@ -5,7 +5,6 @@
./discord.nix
./espanso.nix
./flameshot.nix
./ghostty.nix
./gtk.nix
./media
./slack.nix

View file

@ -1,25 +0,0 @@
{
config,
inputs,
lib,
self,
system,
...
}:
with lib;
let
cfg = config.features.desktop.ghostty;
pkgs-master = inputs.nixpkgs-master.legacyPackages.${system};
in
{
options.features.desktop.ghostty.enable = mkEnableOption "Enable ghostty";
config = mkIf cfg.enable {
home.packages = [ pkgs-master.ghostty ];
xdg.configFile."ghostty/config".source = "${self}/ghostty/config";
};
}