nix/home-manager/hosts/nixos-vm-02/desktops/hyprland/default.nix

20 lines
376 B
Nix
Raw Normal View History

2023-09-23 09:09:53 +02:00
{ 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
''
2023-09-23 09:47:48 +02:00
};
};
2023-09-23 09:09:53 +02:00
}