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

View file

@ -1,17 +0,0 @@
adjust-cell-height = 25%
background = #000000
cursor-style-blink = false
# Disable ligatures.
font-feature = -calt
font-feature = -liga
font-feature = -dlig
font-size = 15
window-decoration = false
window-padding-x = 10
window-padding-y = 10

View file

@ -12,7 +12,6 @@
discord.enable = true;
espanso.enable = true;
flameshot.enable = true;
ghostty.enable = true;
gtk.enable = true;
slack.enable = true;

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";
};
}