diff --git a/flake.lock b/flake.lock index c223d39..3a5d4ec 100644 --- a/flake.lock +++ b/flake.lock @@ -46,32 +46,47 @@ ] }, "locked": { - "lastModified": 1686693375, - "narHash": "sha256-1Smjo0E8WI9PeVGmmCjpQWRX04aQvz5gAGXfdanIjgw=", + "lastModified": 1710888565, + "narHash": "sha256-s9Hi4RHhc6yut4EcYD50sZWRDKsugBJHSbON8KFwoTw=", "owner": "nix-community", "repo": "home-manager", - "rev": "61e5d1c38ef04ba30a9119825b159bce9c6010be", + "rev": "f33900124c23c4eca5831b9b5eb32ea5894375ce", "type": "github" }, "original": { "owner": "nix-community", - "ref": "release-23.05", + "ref": "release-23.11", "repo": "home-manager", "type": "github" } }, "nixpkgs": { "locked": { - "lastModified": 1696323343, - "narHash": "sha256-u7WLUrh5eb+6SBYwtkaGL2ryHpLcHzmLml+a+VqKJWE=", + "lastModified": 1711819797, + "narHash": "sha256-tNeB6emxj74Y6ctwmsjtMlzUMn458sBmwnD35U5KIM4=", "owner": "nixos", "repo": "nixpkgs", - "rev": "3b79cc4bcd9c09b5aa68ea1957c25e437dc6bc58", + "rev": "2b4e3ca0091049c6fbb4908c66b05b77eaef9f0c", + "type": "github" + }, + "original": { + "owner": "nixos", + "ref": "release-23.11", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-unstable": { + "locked": { + "lastModified": 1696351516, + "narHash": "sha256-LieY/RHQXGha+MMShP5DGCdjghKpt6GB03v2GBkCHkw=", + "owner": "nixos", + "repo": "nixpkgs", + "rev": "9c3f0aeb549393656cf9223c0e75e6bafa435c4e", "type": "github" }, "original": { "owner": "nixos", - "ref": "release-23.05", "repo": "nixpkgs", "type": "github" } @@ -81,7 +96,8 @@ "devshell": "devshell", "flake-utils": "flake-utils", "home-manager": "home-manager", - "nixpkgs": "nixpkgs" + "nixpkgs": "nixpkgs", + "nixpkgs-unstable": "nixpkgs-unstable" } }, "systems": { diff --git a/flake.nix b/flake.nix index 095839e..e3cb192 100644 --- a/flake.nix +++ b/flake.nix @@ -2,10 +2,11 @@ description = "Samw's home environment, as managed by nix/home-manager."; inputs = { # Nixpkgs - nixpkgs = {url = "github:nixos/nixpkgs/release-23.05";}; + nixpkgs = {url = "github:nixos/nixpkgs/release-23.11";}; + nixpkgs-unstable = {url = "github:nixos/nixpkgs";}; # Other modules home-manager = { - url = "github:nix-community/home-manager/release-23.05"; + url = "github:nix-community/home-manager/release-23.11"; inputs.nixpkgs.follows = "nixpkgs"; }; flake-utils.url = "github:numtide/flake-utils";