nix/home-manager/hosts/nixos-vm-02/desktops/hyprland/default.nix
2023-09-23 16:47:48 +09:00

20 lines
No EOL
376 B
Nix

{ theme, ... }: {
imports = [
./${theme}/hyprland-conf.nix
./${theme}/waybar-conf.nix
];
home.file = {
".config/hypr/hyprland.conf" = {
enable = true;
text = ''
# Laptop specific:
monitor=,highrr,auto,1
# https://wiki.hyprland.org/Configuring/Variables/
env = GDK_SCALE,1
env = XCURSOR_SIZE,22
''
};
};
}