summary refs log tree commit diff
path: root/mixins/hyprland.nix
blob: 3cc740cdbb1063731e46231686ceee2ab21dbf2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
  pkgs,
  lib,
  config,
  inputs,
  ...
}: {
  config = {
    home-manager.users.tzlil = {
      pkgs,
      config,
      nixosConfig,
      ...
    } @ hm: {
      imports = [
        inputs.hyprland.homeManagerModules.default
      ];

      wayland.windowManager.hyprland.enable = true;
    };
    # programs.hyprland = {
    #   enable = true;
    #   xwayland = {
    #     enable = false;
    #     hidpi = false;
    #   };
    # };
  };
}