fix regression by switching to a fork temporarily

This commit is contained in:
Charlotte 🦝 Delenk 2022-05-07 12:19:47 +01:00
parent e7e4a1b7e5
commit b1526d4b8a
Signed by: darkkirb
GPG key ID: AB2BD8DAF2E37122
2 changed files with 9 additions and 6 deletions

View file

@ -396,15 +396,16 @@
}, },
"nixpkgs_5": { "nixpkgs_5": {
"locked": { "locked": {
"lastModified": 1651918290, "lastModified": 1651921540,
"narHash": "sha256-SeWtiVW1/EiXJAez30pKCT1CMyzVkLnKKmJyYZpUuuo=", "narHash": "sha256-1IPY+MDPWQ65mWN3mXf7jiWrCX1HVMjKrx7emT4+2Zw=",
"owner": "NixOS", "owner": "DarkKirb",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "65401d1b9fcc6f327b1c6b661fe99bb81b024b0b", "rev": "22898dff8cdc8e9f457a1d97bd6c5dc274a2a0a2",
"type": "github" "type": "github"
}, },
"original": { "original": {
"owner": "NixOS", "owner": "DarkKirb",
"ref": "fix-typo-171879",
"repo": "nixpkgs", "repo": "nixpkgs",
"type": "github" "type": "github"
} }

View file

@ -3,7 +3,9 @@ rec {
# Use NixOS unstable # Use NixOS unstable
inputs = { inputs = {
nixpkgs.url = github:NixOS/nixpkgs; #nixpkgs.url = github:NixOS/nixpkgs;
# Fix regression
nixpkgs.url = github:DarkKirb/nixpkgs/fix-typo-171879;
flake-utils.url = github:numtide/flake-utils; flake-utils.url = github:numtide/flake-utils;
home-manager.url = "github:andresilva/home-manager/fix-systemd-services"; home-manager.url = "github:andresilva/home-manager/fix-systemd-services";
home-manager.inputs.nixpkgs.follows = "nixpkgs"; home-manager.inputs.nixpkgs.follows = "nixpkgs";