My NixOS configuration (mirror)

Merge branch 'master' of github.com:matthew-hre/dotfiles

+8 -3
-2
home/wayland/niri/default.nix
··· 38 38 (makeCommand "${pkgs.kdePackages.polkit-kde-agent-1}") 39 39 (makeCommand "NetworkManager") 40 40 (makeCommand "waybar") 41 - (makeCommand "hyprlock") 42 - (makeCommand "ghostty") 43 41 (makeCommand "xwayland-satellite") 44 42 {command = ["wl-paste" "--watch" "cliphist" "store"];} 45 43 ];
+8 -1
system/programs/xdg.nix
··· 2 2 xdg.portal = { 3 3 enable = true; 4 4 xdgOpenUsePortal = true; 5 + config = { 6 + common = { 7 + default = ["gnome" "gtk"]; 8 + "org.freedesktop.impl.portal.ScreenCast" = "gnome"; 9 + "org.freedesktop.impl.portal.Screenshot" = "gnome"; 10 + "org.freedesktop.impl.portal.RemoteDesktop" = "gnome"; 11 + }; 12 + }; 5 13 extraPortals = [ 6 14 pkgs.xdg-desktop-portal-gnome 7 15 pkgs.xdg-desktop-portal-gtk 8 16 ]; 9 - config.common.default = "*"; 10 17 }; 11 18 }