Files
nixcfg/users/daniel/configs/desktop/hyprland/default.nix
2023-02-08 23:02:36 +00:00

18 lines
274 B
Nix

{
config,
lib,
pkgs,
...
}: {
wayland.windowManager.hyprland = {
enable = true;
package = pkgs.hyprland;
xwayland = {
enable = true;
hidpi = true;
};
nvidiaPatches = true;
extraConfig = builtins.readFile ./hyprland.conf;
};
}