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