nixos/home/hyprland/default.nix

13 lines
231 B
Nix
Raw Normal View History

2023-08-20 01:09:30 +02:00
{
pkgs,
inputs,
...
} @ args: {
home.packages = [];
wayland.windowManager.hyprland = {
enable = true;
package = inputs.hyprland.packages.${pkgs.system}.default;
# settings = import ./settings.nix args;
};
}