refactor: change quickshell flake URL

This commit is contained in:
Kiana Sheibani 2025-10-08 13:05:33 -04:00
parent 4e7ca4391e
commit 3bb5e10d4d
Signed by: toki
GPG key ID: 6CB106C25E86A9F7
2 changed files with 10 additions and 14 deletions

View file

@ -5,13 +5,11 @@
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
systems.url = "github:nix-systems/default";
quickshell = {
url = "git+https://git.outfoxxed.me/outfoxxed/quickshell";
inputs.nixpkgs.follows = "nixpkgs";
};
quickshell.url = "https://git.outfoxxed.me/quickshell/quickshell/archive/master.tar.gz";
quickshell.inputs.nixpkgs.follows = "nixpkgs";
};
outputs = { self, nixpkgs, systems, quickshell, ... } @ inputs:
outputs = { self, nixpkgs, systems, quickshell, ... }:
let
inherit (nixpkgs) lib;
eachSystem = lib.genAttrs (import systems);