feat: quokka upgrade

This commit is contained in:
Deepak Mallubhotla 2022-06-08 20:32:49 -05:00
parent dd42593fd7
commit 43070b4e85
2 changed files with 8 additions and 8 deletions

8
flake.lock generated
View File

@ -22,16 +22,16 @@
},
"nixpkgs": {
"locked": {
"lastModified": 1649283845,
"narHash": "sha256-upmtyRf/6rAQ63P2Jf5lzn2Esn3c9cv7KRoR05zLZBc=",
"lastModified": 1654725607,
"narHash": "sha256-xncw+4Hfj+6PxR94HlzwLltP5FlFAls6GdQEBN70d/4=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "60f020d822ea80eb9ec40e993434f4446c342f43",
"rev": "578757aec2445fe6efbb8f1a4c6b92d7a0559a6f",
"type": "github"
},
"original": {
"owner": "NixOS",
"ref": "release-21.11",
"ref": "release-22.05",
"repo": "nixpkgs",
"type": "github"
}

View File

@ -2,8 +2,8 @@
description = "Configuration v1";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/release-21.11";
nixpkgs.url = "github:NixOS/nixpkgs/release-22.05";
homeManager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
@ -11,7 +11,7 @@
};
outputs = { self, nixpkgs, homeManager, ...}@inputs: {
nixosConfigurations = (
import ./hosts/hosts.nix {
inherit nixpkgs;
@ -20,6 +20,6 @@
inherit (nixpkgs) lib;
}
);
};
}