feat(desktop): move xdg portal settings to home manager.

This commit is contained in:
CronyAkatsuki 2025-06-22 22:02:18 +02:00
parent 095e45e435
commit e68ce48e25
2 changed files with 12 additions and 13 deletions

View file

@ -150,19 +150,6 @@
crony.hyprland-nixos.enable = true; crony.hyprland-nixos.enable = true;
crony.ollama.enable = true; crony.ollama.enable = true;
xdg.portal = {
enable = true;
wlr = {
enable = true;
settings = {
screencast = {
chooser_type = "simple";
chooser_cmd = "${pkgs.slurp}/bin/slurp -f %o -ro";
};
};
};
};
# List packages installed in system profile # List packages installed in system profile
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
neovim neovim

View file

@ -224,5 +224,17 @@
}; };
}; };
}; };
xdg.portal = {
enable = true;
extraPortals = [pkgs.xdg-desktop-portal-gtk];
# config = {
# common = {
# default = [
# "gtk"
# ];
# };
# };
};
}; };
} }