diff options
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 23 |
1 files changed, 22 insertions, 1 deletions
@@ -7,13 +7,34 @@ inputs.nixpkgs.follows = "nixpkgs"; }; - # hyprland.url = "git+https://github.com/hyprwm/Hyprland?submodules=1"; # waybar-hyprland.url = "github:hyprwm/hyprland"; nur.url = "github:nix-community/NUR"; stylix.url = "github:danth/stylix"; # matugen.url = "github:InioX/matugen?ref=v2.2.0"; # xdg-portal-hyprland.url = "github:hyprwm/xdg-desktop-portal-hyprland"; systems.url = "github:nix-systems/default-linux"; + + hyprland = { + type = "git"; + url = "https://github.com/hyprwm/Hyprland"; + submodules = true; + }; + + hyprland-plugins = { + url = "github:hyprwm/hyprland-plugins"; + inputs.hyprland.follows = "hyprland"; + }; + + + Hyprspace = { + url = "github:KZDKM/Hyprspace"; + inputs.hyprland.follows = "hyprland"; + }; + + hycov = { + url = "github:DreamMaoMao/hycov"; + inputs.hyprland.follows = "hyprland"; + }; }; outputs = { self, nixpkgs, home-manager, stylix, systems, ... } @ inputs: |