Generalize and move configs

This commit is contained in:
Jimbo 2024-11-12 18:03:28 -05:00
parent 17f2a16f48
commit ffb1b6d541
21 changed files with 73 additions and 64 deletions

View file

@ -6,6 +6,7 @@
./keyd
./libvirtd
./mpd
./portals
./ssh
./sunshine
./tlp

View file

@ -0,0 +1,6 @@
{ ... }:
{
imports = [
./wlr
];
}

View file

@ -0,0 +1,11 @@
{ config, pkgs, ... }:
{
xdg.portal.wlr = {
enable = config.system.desktop.enable;
settings.screencast = {
max_fps = 60;
chooser_type = "simple";
chooser_cmd = "${pkgs.slurp}/bin/slurp -f %o -or -B 00000066 -b 00000099";
};
};
}