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": {
"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": {

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);