From 3bb5e10d4da5ae32c4cd70eef94be4312c7bacb8 Mon Sep 17 00:00:00 2001 From: Kiana Sheibani Date: Wed, 8 Oct 2025 13:05:33 -0400 Subject: [PATCH] refactor: change `quickshell` flake URL --- flake.lock | 16 +++++++--------- flake.nix | 8 +++----- 2 files changed, 10 insertions(+), 14 deletions(-) diff --git a/flake.lock b/flake.lock index 0b7e0a4..bb37496 100644 --- a/flake.lock +++ b/flake.lock @@ -23,17 +23,15 @@ ] }, "locked": { - "lastModified": 1759303785, - "narHash": "sha256-EUXrK7pUIzOQWR1dquZh26A6W8lsY2oiHEEZzQnsarM=", - "ref": "refs/heads/master", - "rev": "9662234759eb57f2a1057f2a1c667da1bf128c1c", - "revCount": 686, - "type": "git", - "url": "https://git.outfoxxed.me/outfoxxed/quickshell" + "lastModified": 1759610621, + "narHash": "sha256-P3UPFd95mS/3aNgy40nCXAmyfR2bEEBd+tX6xfkYFb0=", + "rev": "c5c438f1cd1a76660a8658ef929a3d19e968e2ce", + "type": "tarball", + "url": "https://git.outfoxxed.me/api/v1/repos/quickshell/quickshell/archive/c5c438f1cd1a76660a8658ef929a3d19e968e2ce.tar.gz" }, "original": { - "type": "git", - "url": "https://git.outfoxxed.me/outfoxxed/quickshell" + "type": "tarball", + "url": "https://git.outfoxxed.me/quickshell/quickshell/archive/master.tar.gz" } }, "root": { diff --git a/flake.nix b/flake.nix index 2291609..58eae2a 100644 --- a/flake.nix +++ b/flake.nix @@ -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);