summaryrefslogtreecommitdiff
path: root/modules/nixos/hyprland.nix
diff options
context:
space:
mode:
authorDevin Finlinson <devin.finlinson@pm.me>2024-04-22 10:08:01 -0600
committerDevin Finlinson <devin.finlinson@pm.me>2024-04-22 10:08:01 -0600
commitd0b17b48fe4371ae8ca87c6c2482d0fd26f117a8 (patch)
tree6199a7b4c105fa08c93565025a4a8a91e2220038 /modules/nixos/hyprland.nix
parent799a3a9994bbd4b8af1519bb57cbd64b56180112 (diff)
moved hyprland to flake rather than nixpkg, also update
Diffstat (limited to 'modules/nixos/hyprland.nix')
-rw-r--r--modules/nixos/hyprland.nix5
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;
};