nixos-configs/modules/desktop/desktop-environment/home/style.nix
matt1432 35645b93a6
All checks were successful
Discord / discord commits (push) Has been skipped
feat(desktop): wpaperd -> hyprpaper
2024-07-06 03:07:47 -04:00

34 lines
682 B
Nix

{config, ...}: let
inherit (config.vars) configDir;
in {
imports = [
../../home/theme
../../home/hyprpaper.nix
];
wayland.windowManager.hyprland = {
settings = {
envd = ["XCURSOR_SIZE, 24"];
exec-once = [
"hyprctl setcursor Dracula-cursors 24"
"hyprpaper"
];
windowrule = [
"size 1231 950,title:^(Open Folder)$"
"float,title:^(Open Folder)$"
"size 1231 950,title:^(Open File)$"
"float,title:^(Open File)$"
];
layerrule = [
"noanim, selection"
];
# This file should only be used for theming
source = ["${configDir}/hypr/main.conf"];
};
};
}