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

16
flake.lock generated
View file

@ -23,17 +23,15 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1759303785, "lastModified": 1759610621,
"narHash": "sha256-EUXrK7pUIzOQWR1dquZh26A6W8lsY2oiHEEZzQnsarM=", "narHash": "sha256-P3UPFd95mS/3aNgy40nCXAmyfR2bEEBd+tX6xfkYFb0=",
"ref": "refs/heads/master", "rev": "c5c438f1cd1a76660a8658ef929a3d19e968e2ce",
"rev": "9662234759eb57f2a1057f2a1c667da1bf128c1c", "type": "tarball",
"revCount": 686, "url": "https://git.outfoxxed.me/api/v1/repos/quickshell/quickshell/archive/c5c438f1cd1a76660a8658ef929a3d19e968e2ce.tar.gz"
"type": "git",
"url": "https://git.outfoxxed.me/outfoxxed/quickshell"
}, },
"original": { "original": {
"type": "git", "type": "tarball",
"url": "https://git.outfoxxed.me/outfoxxed/quickshell" "url": "https://git.outfoxxed.me/quickshell/quickshell/archive/master.tar.gz"
} }
}, },
"root": { "root": {

View file

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