system/programs: add hyprland module
This commit is contained in:
parent
ef36f7be36
commit
cdda6bf2bc
2 changed files with 12 additions and 0 deletions
|
@ -20,6 +20,7 @@ in {
|
||||||
"${system}/services/greetd.nix"
|
"${system}/services/greetd.nix"
|
||||||
|
|
||||||
"${system}/programs/niri"
|
"${system}/programs/niri"
|
||||||
|
"${system}/programs/hyprland.nix"
|
||||||
"${system}/services/gnome.nix"
|
"${system}/services/gnome.nix"
|
||||||
|
|
||||||
"${system}/services/documentation.nix"
|
"${system}/services/documentation.nix"
|
||||||
|
|
11
system/programs/hyprland.nix
Normal file
11
system/programs/hyprland.nix
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
inputs,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
|
programs.hyprland = {
|
||||||
|
enable = true;
|
||||||
|
package = inputs.hyprland.packages.${pkgs.system}.hyprland;
|
||||||
|
portalPackage = inputs.hyprland.packages.${pkgs.system}.xdg-desktop-portal-hyprland;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue