Files
dotfiles/nix/modules/hyprland/home.nix
doloro 2e94f6dac3 meow
2025-09-22 20:55:16 +00:00

18 lines
456 B
Nix

{ inputs, pkgs, ... }:
let
in
{
imports = [
./settings.nix
];
wayland.windowManager.hyprland = {
enable = true;
# set the flake package
# settings = { };
package = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.hyprland;
portalPackage = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.xdg-desktop-portal-hyprland;
};
programs.foot.enable = true;
}