This commit is contained in:
notgne2 2022-11-03 08:26:16 -07:00
parent 3bd782b1df
commit e1f0a69787
Signed by: notgne2
SSH Key Fingerprint: SHA256:qlFCAimT/PvNIG3u+aYT9pIqFCWgu6sNsWjpV1vHLIE
2 changed files with 5 additions and 4 deletions

View File

@ -13,12 +13,12 @@ in {
xdg.portal = { xdg.portal = {
enable = lib.mkDefault true; enable = lib.mkDefault true;
wlr = { wlr = {
enable = true; enable = lib.mkDefault true;
settings = { settings = {
screencast = { screencast = {
max_fps = 30; max_fps = lib.mkDefault 30;
chooser_type = "simple"; chooser_type = lib.mkDefault "simple";
chooser_cmd = "${pkgs.slurp}/bin/slurp -f %o -or"; chooser_cmd = lib.mkDefault "${pkgs.slurp}/bin/slurp -f %o -or";
}; };
}; };
}; };

View File

@ -270,6 +270,7 @@ in {
# Shit breaks without this lol # Shit breaks without this lol
programs.dconf.enable = lib.mkDefault true; programs.dconf.enable = lib.mkDefault true;
services.dbus.enable = lib.mkDefault true;
services.dbus.packages = with pkgs; [dconf]; services.dbus.packages = with pkgs; [dconf];
boot.kernel.sysctl = { boot.kernel.sysctl = {