flake/home/applications/common/wm.nix

17 lines
389 B
Nix
Raw Normal View History

2023-12-18 19:06:50 +00:00
{pkgs, ...}: {
home.packages = with pkgs; [
pavucontrol
];
dconf.settings = {
"org/gnome/desktop/wm/preferences" = {
"button-layout" = "icon,appmenu:"; # remove csd window buttons
};
};
2024-02-13 04:24:25 +00:00
home.sessionVariables = {
# https://github.com/localsend/localsend/blob/2457acd8a7412723b174672d174e4853dccd7d99/app/linux/my_application.cc#L45
GTK_CSD = 0;
};
2023-12-18 19:06:50 +00:00
}