diff options
author | Vaxry <[email protected]> | 2023-02-27 12:32:38 +0000 |
---|---|---|
committer | GitHub <[email protected]> | 2023-02-27 12:32:38 +0000 |
commit | 8b81f41e52b55835aaaa7e4962af23a00188cbdc (patch) | |
tree | bca65923843ea931c0e0222f29d4e2901cfa8637 /flake.nix | |
parent | 74a10f26a469de54968e584525f6507928f615f0 (diff) | |
download | Hyprland-8b81f41e52b55835aaaa7e4962af23a00188cbdc.tar.gz Hyprland-8b81f41e52b55835aaaa7e4962af23a00188cbdc.zip |
Plugin System (#1590)
---------
Co-authored-by: Mihai Fufezan <[email protected]>
Diffstat (limited to 'flake.nix')
-rw-r--r-- | flake.nix | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -52,11 +52,14 @@ version = props.version + "+date=" + (mkDate (self.lastModifiedDate or "19700101")) + "_" + (self.shortRev or "dirty"); wlroots = wlroots-hyprland; inherit (inputs.hyprland-protocols.packages.${prev.stdenv.hostPlatform.system}) hyprland-protocols; + inherit udis86; }; hyprland-debug = hyprland.override {debug = true;}; hyprland-no-hidpi = hyprland.override {hidpiXWayland = false;}; hyprland-nvidia = hyprland.override {nvidiaPatches = true;}; + udis86 = prev.callPackage ./nix/udis86.nix {}; + waybar-hyprland = prev.waybar.overrideAttrs (oldAttrs: { postPatch = '' # use hyprctl to switch workspaces |