Disabled kitty in hyprland.nix

This commit is contained in:
2026-02-26 10:37:00 +01:00
parent 7ec84d811f
commit 5e1be8caab
2 changed files with 0 additions and 12 deletions
-6
View File
@@ -1839,8 +1839,6 @@ let
bindingsConf = flakeRoot + "/assets/conf/desktop/hypr/bindings.conf"; bindingsConf = flakeRoot + "/assets/conf/desktop/hypr/bindings.conf";
in in
{ {
programs.kitty.enable = true;
wayland.windowManager.hyprland = { wayland.windowManager.hyprland = {
enable = true; enable = true;
# Load base config + bindings from repo files # Load base config + bindings from repo files
@@ -1850,22 +1848,18 @@ in
+ (builtins.readFile bindingsConf) + (builtins.readFile bindingsConf)
+ "\n"; + "\n";
}; };
xdg.configFile."hypr/scripts/lid-lock.sh" = { xdg.configFile."hypr/scripts/lid-lock.sh" = {
source = flakeRoot + "/assets/conf/desktop/hypr/scripts/lid-lock.sh"; source = flakeRoot + "/assets/conf/desktop/hypr/scripts/lid-lock.sh";
executable = true; executable = true;
}; };
xdg.portal = { xdg.portal = {
enable = true; enable = true;
extraPortals = with pkgs; [ extraPortals = with pkgs; [
xdg-desktop-portal-gtk xdg-desktop-portal-gtk
xdg-desktop-portal-hyprland xdg-desktop-portal-hyprland
]; ];
# GTK als algemene backend (OpenURI is daar betrouwbaar) # GTK als algemene backend (OpenURI is daar betrouwbaar)
config.common.default = [ "gtk" ]; config.common.default = [ "gtk" ];
# Hyprland alleen voor screensharing / remote desktop # Hyprland alleen voor screensharing / remote desktop
config.hyprland = { config.hyprland = {
"org.freedesktop.impl.portal.Screencast" = [ "hyprland" ]; "org.freedesktop.impl.portal.Screencast" = [ "hyprland" ];
-6
View File
@@ -4,8 +4,6 @@ let
bindingsConf = flakeRoot + "/assets/conf/desktop/hypr/bindings.conf"; bindingsConf = flakeRoot + "/assets/conf/desktop/hypr/bindings.conf";
in in
{ {
programs.kitty.enable = true;
wayland.windowManager.hyprland = { wayland.windowManager.hyprland = {
enable = true; enable = true;
# Load base config + bindings from repo files # Load base config + bindings from repo files
@@ -15,22 +13,18 @@ in
+ (builtins.readFile bindingsConf) + (builtins.readFile bindingsConf)
+ "\n"; + "\n";
}; };
xdg.configFile."hypr/scripts/lid-lock.sh" = { xdg.configFile."hypr/scripts/lid-lock.sh" = {
source = flakeRoot + "/assets/conf/desktop/hypr/scripts/lid-lock.sh"; source = flakeRoot + "/assets/conf/desktop/hypr/scripts/lid-lock.sh";
executable = true; executable = true;
}; };
xdg.portal = { xdg.portal = {
enable = true; enable = true;
extraPortals = with pkgs; [ extraPortals = with pkgs; [
xdg-desktop-portal-gtk xdg-desktop-portal-gtk
xdg-desktop-portal-hyprland xdg-desktop-portal-hyprland
]; ];
# GTK als algemene backend (OpenURI is daar betrouwbaar) # GTK als algemene backend (OpenURI is daar betrouwbaar)
config.common.default = [ "gtk" ]; config.common.default = [ "gtk" ];
# Hyprland alleen voor screensharing / remote desktop # Hyprland alleen voor screensharing / remote desktop
config.hyprland = { config.hyprland = {
"org.freedesktop.impl.portal.Screencast" = [ "hyprland" ]; "org.freedesktop.impl.portal.Screencast" = [ "hyprland" ];