diff options
Diffstat (limited to '')
| -rw-r--r-- | flake.nix | 23 |
1 files changed, 15 insertions, 8 deletions
@@ -8,13 +8,13 @@ home-manager.url = "github:nix-community/home-manager/master"; home-manager.inputs.nixpkgs.follows = "nixpkgs"; # hyprland - hyprland.url = "github:hyprwm/Hyprland/v0.52.2"; + hyprland.url = "github:hyprwm/Hyprland/v0.53.1"; hyprland.inputs.nixpkgs.follows = "nixpkgs"; # hyprland plugins - hyprland-plugins.url = "github:hyprwm/hyprland-plugins/v0.52.0"; + hyprland-plugins.url = "github:hyprwm/hyprland-plugins/v0.53.0"; hyprland-plugins.inputs.hyprland.follows = "hyprland"; # hyprland hy3 - hy3.url = "github:outfoxxed/hy3/hl0.52.0"; + hy3.url = "github:outfoxxed/hy3/hl0.53.0"; hy3.inputs.hyprland.follows = "hyprland"; # sops sops-nix.url = "github:Mic92/sops-nix"; @@ -47,6 +47,13 @@ # nix-mineral nix-mineral.url = "github:cynicsketch/nix-mineral"; nix-mineral.inputs.nixpkgs.follows = "nixpkgs"; + # quickshell + quickshell.url = "git+https://git.outfoxxed.me/outfoxxed/quickshell"; + quickshell.inputs.nixpkgs.follows = "nixpkgs"; + # caelestia-shell + caelestia-shell.url = "git+https://g.freya.cat/caelestia-shell"; + caelestia-shell.inputs.nixpkgs.follows = "nixpkgs"; + caelestia-shell.inputs.quickshell.follows = "quickshell"; }; outputs = { @@ -127,12 +134,12 @@ pkgs.alejandra ); - devShell = perSystem ( + devShells = perSystem ( pkgs: system: - pkgs.mkShell { - packages = [ - home-manager.packages.${system}.home-manager - ]; + import ./shells { + inherit pkgs; + inherit system; + inherit inputs; } ); }; |