use hyprland flake

This commit is contained in:
do butterflies cry? 2026-02-27 16:50:32 +10:00
parent f4afbbee14
commit 423e9e13b2
4 changed files with 540 additions and 75 deletions

View file

@ -1,33 +0,0 @@
# NOTE: hyprland must be enabled in BOTH your host config (for running hyprland)
# and your home-manager config (for managing hyprland's config files)
{
pkgs,
config,
lib,
...
}: {
options.hyprland = {
enable = lib.mkEnableOption "Hyprland";
};
config = lib.mkIf config.hyprland.enable {
programs.hyprland = {
enable = true;
portalPackage = pkgs.xdg-desktop-portal-hyprland;
#package = inputs.hyprland.packages.${pkgs.system}.hyprland;
xwayland.enable = true;
};
xdg.portal = {
enable = true;
wlr.enable = true;
# extraPortals = with pkgs; [
# xdg-desktop-portal-hyprland
# # xdg-desktop-portal-gtk
# ];
};
# TODO: finish this (I didn't like the dotfiles I was getting inspo from and stopped)
};
}

View file

@ -1,4 +1,11 @@
{pkgs, ...}: {
{
inputs,
pkgs,
system,
...
}: let
# hyprpkgs = inputs.hyprland.packages.${system}
in {
environment.defaultPackages = with pkgs; [
hyprsunset
];
@ -17,9 +24,11 @@
programs = {
hyprland = {
enable = true;
package = inputs.hyprland.packages.${system}.hyprland;
portalPackage = inputs.hyprland.packages.${system}.xdg-desktop-portal-hyprland;
# withUWSM = true; # Universal Wayland Session Manager
xwayland.enable = true;
portalPackage = pkgs.xdg-desktop-portal-hyprland;
};
};
}