flake/home/applications/common/wm.nix

9 lines
337 B
Nix
Raw Normal View History

2023-12-18 19:06:50 +00:00
{pkgs, ...}: {
2024-04-10 22:28:20 +00:00
home.packages = with pkgs; [pwvucontrol];
2023-12-18 19:06:50 +00:00
2024-03-26 08:49:35 +00:00
# remove csd window buttons
# https://github.com/localsend/localsend/blob/2457acd8a7412723b174672d174e4853dccd7d99/app/linux/my_application.cc#L45
home.sessionVariables.GTK_CSD = 0;
dconf.settings."org/gnome/desktop/wm/preferences"."button-layout" = "icon,appmenu:";
2023-12-18 19:06:50 +00:00
}