mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2025-12-06 09:07:21 +01:00
19 lines
314 B
Nix
19 lines
314 B
Nix
{ pkgs, ... }:
|
|
{
|
|
|
|
xdg.portal = {
|
|
enable = true;
|
|
config = {
|
|
common = {
|
|
default = "wlr";
|
|
};
|
|
};
|
|
wlr.enable = true;
|
|
wlr.settings.screencast = {
|
|
output_name = "eDP-1";
|
|
chooser_type = "simple";
|
|
chooser_cmd = "${pkgs.slurp}/bin/slurp -f %o -or";
|
|
};
|
|
};
|
|
|
|
}
|