diff --git a/.cirrus.yml b/.cirrus.yml index ccbe158..fbbf47e 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -9,7 +9,7 @@ task: container: # Defined in https://github.com/nix-community/docker-nixpkgs - image: nixpkgs/nix-flakes:nixos-22.05 + image: nixpkgs/nix-flakes:nixos-22.11 matrix: - name: modules_test diff --git a/examples/configuration.nix b/examples/configuration.nix index 9ec5837..ff781af 100644 --- a/examples/configuration.nix +++ b/examples/configuration.nix @@ -287,7 +287,7 @@ # this value at the release version of the first install of this system. # Before changing this value read the documentation for this option # (e.g. man configuration.nix or on https://nixos.org/nixos/options.html). - system.stateVersion = "22.05"; # Did you read the comment? + system.stateVersion = "22.11"; # Did you read the comment? # The nix-bitcoin release version that your config is compatible with. # When upgrading to a backwards-incompatible release, nix-bitcoin will display an diff --git a/flake.lock b/flake.lock index 590bab3..ceb8414 100644 --- a/flake.lock +++ b/flake.lock @@ -40,27 +40,27 @@ }, "nixpkgs": { "locked": { - "lastModified": 1670700605, - "narHash": "sha256-5dlpATkcyITpdtMflhltuD+A3RNpsVI1Mb+dtKkll6Y=", + "lastModified": 1671040593, + "narHash": "sha256-W5aZNwYBjaEaLifDWGEfecvnCiDkXjI26rHgidSftUM=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "7b9eeb856cbf976482fa8d1cb295ea03fb3e1277", + "rev": "170e39462b516bd1475ce9184f7bb93106d27c59", "type": "github" }, "original": { "owner": "NixOS", - "ref": "nixos-22.05", + "ref": "nixos-22.11", "repo": "nixpkgs", "type": "github" } }, "nixpkgs-unstable": { "locked": { - "lastModified": 1670918062, - "narHash": "sha256-iOhkyBYUU9Jfkk0lvI4ahpjyrTsLXj9uyJWwmjKg+gg=", + "lastModified": 1671095104, + "narHash": "sha256-BgI8tDJgORrKX9lF93enEDKP5WxIoVBt9+1zoGIfx7k=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "84575b0bd882be979516f4fecfe4d7c8de8f6a92", + "rev": "7634c3250b6870e76f2e611cb95b72392add9aef", "type": "github" }, "original": { diff --git a/flake.nix b/flake.nix index 3be5d2a..d8b05da 100644 --- a/flake.nix +++ b/flake.nix @@ -5,7 +5,7 @@ ''; inputs = { - nixpkgs.url = "github:NixOS/nixpkgs/nixos-22.05"; + nixpkgs.url = "github:NixOS/nixpkgs/nixos-22.11"; nixpkgs-unstable.url = "github:NixOS/nixpkgs/nixpkgs-unstable"; flake-utils.url = "github:numtide/flake-utils"; extra-container = { diff --git a/pkgs/pinned.nix b/pkgs/pinned.nix index 1d61bd0..859d07f 100644 --- a/pkgs/pinned.nix +++ b/pkgs/pinned.nix @@ -2,23 +2,23 @@ pkgs: pkgsUnstable: { inherit (pkgs) - lightning-pool - lndconnect; - - inherit (pkgsUnstable) bitcoin bitcoind btcpayserver - charge-lnd - clightning electrs elementsd extra-container fulcrum hwi lightning-loop - lnd + lightning-pool + lndconnect nbxplorer; + inherit (pkgsUnstable) + charge-lnd + clightning + lnd; + inherit pkgs pkgsUnstable; }