Delete ghostty configuration
This commit is contained in:
parent
279ce3ebf4
commit
384c9aadb1
|
@ -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
|
|
|
@ -12,7 +12,6 @@
|
||||||
discord.enable = true;
|
discord.enable = true;
|
||||||
espanso.enable = true;
|
espanso.enable = true;
|
||||||
flameshot.enable = true;
|
flameshot.enable = true;
|
||||||
ghostty.enable = true;
|
|
||||||
gtk.enable = true;
|
gtk.enable = true;
|
||||||
slack.enable = true;
|
slack.enable = true;
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,6 @@
|
||||||
./discord.nix
|
./discord.nix
|
||||||
./espanso.nix
|
./espanso.nix
|
||||||
./flameshot.nix
|
./flameshot.nix
|
||||||
./ghostty.nix
|
|
||||||
./gtk.nix
|
./gtk.nix
|
||||||
./media
|
./media
|
||||||
./slack.nix
|
./slack.nix
|
||||||
|
|
|
@ -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";
|
|
||||||
};
|
|
||||||
}
|
|
Loading…
Reference in a new issue