Regenerated

This commit is contained in:
2026-03-21 20:45:54 +00:00
parent bef6d407b6
commit a2438b624e
31 changed files with 11 additions and 1513 deletions
@@ -1,28 +0,0 @@
{ lib, config, pkgs, inputs, ... }:
let
username = config.defaultUser or "henrov";
# XDG portal package, fallback to flake input if needed
xdgPortalHyprlandPkg = pkgs.xdg-desktop-portal-hyprland or
inputs.xdgPortalHyprland.packages.${pkgs.system}.default;
in
{
# Enable XDG portal system-wide
services.xdg.portal.enable = true;
# Home Manager user settings
_module.args.hmUsers = {
${username} = {
home.packages = [ xdgPortalHyprlandPkg ];
xdg.portal = {
enable = true;
extraPortals = [ xdgPortalHyprlandPkg ];
config.hyprland = {
"org.freedesktop.impl.portal.Screencast" = [ "hyprland" ];
};
};
};
};
}