Reinitialized repo after massive overhaul

This commit is contained in:
2024-10-02 14:24:37 -05:00
parent 319e79bcd2
commit a501308ce9
45 changed files with 156 additions and 290 deletions

View File

@@ -0,0 +1,25 @@
{
description = "Hyprland Config";
inputs = {
hyprland.url = "git+https://github.com/hyprwm/Hyprland?submodules=1";
};
outputs = { self, ... }@inputs: {
module = { config, lib, pkgs, ... }: {
programs.hyprland = {
enable = true;
xwayland.enable = true;
package = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.hyprland;
portalPackage = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.xdg-desktop-portal-hyprland;
};
};
};
}