removing ghostty from nixos modules
This commit is contained in:
@@ -72,9 +72,6 @@
|
|||||||
gamescope = {
|
gamescope = {
|
||||||
enable = true;
|
enable = true;
|
||||||
};
|
};
|
||||||
ghostty = {
|
|
||||||
enable = false;
|
|
||||||
};
|
|
||||||
gimp = {
|
gimp = {
|
||||||
enable = false;
|
enable = false;
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -74,7 +74,6 @@
|
|||||||
./nixos/programs/fish
|
./nixos/programs/fish
|
||||||
./nixos/programs/gamemode
|
./nixos/programs/gamemode
|
||||||
./nixos/programs/gamescope
|
./nixos/programs/gamescope
|
||||||
./nixos/programs/ghostty
|
|
||||||
./nixos/programs/gimp
|
./nixos/programs/gimp
|
||||||
./nixos/programs/gnome
|
./nixos/programs/gnome
|
||||||
./nixos/programs/hyprland
|
./nixos/programs/hyprland
|
||||||
|
|||||||
@@ -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];
|
|
||||||
};
|
|
||||||
}
|
|
||||||
Reference in New Issue
Block a user