diff options
| author | Devin Finlinson <devin.finlinson@pm.me> | 2024-04-22 10:08:01 -0600 |
|---|---|---|
| committer | Devin Finlinson <devin.finlinson@pm.me> | 2024-04-22 10:08:01 -0600 |
| commit | d0b17b48fe4371ae8ca87c6c2482d0fd26f117a8 (patch) | |
| tree | 6199a7b4c105fa08c93565025a4a8a91e2220038 /modules/nixos/hyprland.nix | |
| parent | 799a3a9994bbd4b8af1519bb57cbd64b56180112 (diff) | |
moved hyprland to flake rather than nixpkg, also update
Diffstat (limited to 'modules/nixos/hyprland.nix')
| -rw-r--r-- | modules/nixos/hyprland.nix | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/modules/nixos/hyprland.nix b/modules/nixos/hyprland.nix index 3167314..935d5e4 100644 --- a/modules/nixos/hyprland.nix +++ b/modules/nixos/hyprland.nix @@ -1,10 +1,10 @@ -{ pkgs, hyprland, ...}: { +{ pkgs, inputs, ...}: { xdg.portal = { enable = true; wlr.enable = true; extraPortals = with pkgs; [ # xdg-desktop-portal-wlr - xdg-desktop-portal-hyprland + # xdg-desktop-portal-hyprland ]; }; @@ -32,6 +32,7 @@ programs = { hyprland = { enable = true; + package = inputs.hyprland.packages.${pkgs.system}.hyprland; # nvidiaPatches = true; }; |
