7 lines
200 B
Nix
7 lines
200 B
Nix
# The main configuration is specified by home-manager
|
|
{ inputs, pkgs, ... }: {
|
|
programs.hyprland.enable = true;
|
|
programs.hyprland.package =
|
|
inputs.hyprland.packages.${pkgs.system}.hyprland;
|
|
}
|