summary refs log tree commit diff
path: root/mixins/hyprland.nix
blob: 1a063d93f6e6253124588828cc6ab07fddae2f68 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
  pkgs,
  lib,
  config,
  inputs,
  ...
}: {
  imports = [
    inputs.hyprland.nixosModules.default
  ];
  config = {
    programs.hyprland = {
      enable = true;
      xwayland = {
        enable = false;
        hidpi = false;
      };
    };
  };
}