nixos-configs/nixosModules/desktop/theme/default.nix
matt1432 2d39d81560
All checks were successful
Discord / discord commits (push) Has been skipped
refactor(desktop): unify animations on both desktops
2024-11-18 11:32:02 -05:00

29 lines
543 B
Nix

self: {...}: {
imports = [
./gtk
./xresources.nix
(import ./cursors.nix self)
(import ./qt.nix self)
(import ./hyprpaper.nix self)
];
config.wayland.windowManager.hyprland = {
settings = {
windowrule = [
"size 1231 950,title:^(Open Folder)$"
"float,title:^(Open Folder)$"
"size 1231 950,title:^(Open File)$"
"float,title:^(Open File)$"
];
layerrule = [
"noanim, selection"
];
};
};
# For accurate stack trace
_file = ./default.nix;
}