removing ghostty from nixos modules

This commit is contained in:
2025-01-06 13:19:55 +01:00
parent 996d48221c
commit f47fa6bbe5
3 changed files with 0 additions and 20 deletions

View File

@@ -74,7 +74,6 @@
./nixos/programs/fish
./nixos/programs/gamemode
./nixos/programs/gamescope
./nixos/programs/ghostty
./nixos/programs/gimp
./nixos/programs/gnome
./nixos/programs/hyprland

View File

@@ -1,16 +0,0 @@
{
config,
lib,
inputs,
...
}: let
inherit (lib) mkIf mkEnableOption;
cfg = config.nixos.programs.ghostty;
in {
options = {
nixos.programs.ghostty.enable = mkEnableOption "Enables ghostty";
};
config = mkIf cfg.enable {
environment.systemPackages = [inputs.ghostty.packages.x86_64-linux.default];
};
}