fix: hyprland desktop for osc codes

This commit is contained in:
Barrett Ruth 2026-02-11 16:20:30 -05:00
parent 9a4cca62e7
commit e27ef9ed34
Signed by: barrett
GPG key ID: A6C96C9349D2FC81

View file

@ -1,4 +1,4 @@
{ pkgs, ... }:
{ config, lib, pkgs, ... }:
{
imports = [
@ -113,12 +113,15 @@
virtualisation.libvirtd.enable = true;
programs.virt-manager.enable = true;
xdg.portal = {
xdg.portal = lib.mkIf config.programs.hyprland.enable {
enable = true;
extraPortals = with pkgs; [
xdg-desktop-portal-gtk
xdg-desktop-portal-hyprland
];
config.common = {
default = [ "hyprland" "gtk" ];
};
};
security.sudo.enable = true;