update to NixOS 25.05

This commit is contained in:
Erik Arvstedt 2025-06-01 23:05:53 +02:00
parent 120daaaaa3
commit 9808a5e5d4
No known key found for this signature in database
GPG key ID: 33312B944DD97846
8 changed files with 19 additions and 18 deletions

View file

@ -9,7 +9,7 @@ task:
container:
# Defined in https://github.com/nix-community/docker-nixpkgs
image: nixpkgs/nix-flakes:nixos-24.11
image: nixpkgs/nix-flakes:nixos-25.05
matrix:
- name: modules_test

View file

@ -97,5 +97,5 @@ It's easiest to use an existing service as a template:
Most other services use packages that are already included in nixpkgs.
## Switching to a new NixOS release
- Run command `update-flake.sh 24.11`
- Run command `update-flake.sh 25.05`
- Treewide: check if any `TODO-EXTERNAL` comments can be resolved

View file

@ -318,7 +318,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 = "24.11"; # Did you read the comment?
system.stateVersion = "25.05"; # 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

View file

@ -12,7 +12,7 @@
inputs = {
nix-bitcoin.url = "github:fort-nix/nix-bitcoin/release";
# You can also use a version branch to track a specific NixOS release
# nix-bitcoin.url = "github:fort-nix/nix-bitcoin/nixos-24.11";
# nix-bitcoin.url = "github:fort-nix/nix-bitcoin/nixos-25.05";
nixpkgs.follows = "nix-bitcoin/nixpkgs";
nixpkgs-unstable.follows = "nix-bitcoin/nixpkgs-unstable";

View file

@ -10,7 +10,7 @@
inputs.nix-bitcoin.url = "github:fort-nix/nix-bitcoin/release";
# You can also use a version branch to track a specific NixOS release
# inputs.nix-bitcoin.url = "github:fort-nix/nix-bitcoin/nixos-24.11";
# inputs.nix-bitcoin.url = "github:fort-nix/nix-bitcoin/nixos-25.05";
inputs.nixpkgs.follows = "nix-bitcoin/nixpkgs";
inputs.nixpkgs-unstable.follows = "nix-bitcoin/nixpkgs-unstable";

8
flake.lock generated
View file

@ -44,16 +44,16 @@
},
"nixpkgs": {
"locked": {
"lastModified": 1748037224,
"narHash": "sha256-92vihpZr6dwEMV6g98M5kHZIttrWahb9iRPBm1atcPk=",
"lastModified": 1749237914,
"narHash": "sha256-N5waoqWt8aMr/MykZjSErOokYH6rOsMMXu3UOVH5kiw=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "f09dede81861f3a83f7f06641ead34f02f37597f",
"rev": "70c74b02eac46f4e4aa071e45a6189ce0f6d9265",
"type": "github"
},
"original": {
"owner": "NixOS",
"ref": "nixos-24.11",
"ref": "nixos-25.05",
"repo": "nixpkgs",
"type": "github"
}

View file

@ -5,7 +5,7 @@
'';
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.11";
nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.05";
nixpkgs-unstable.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
flake-utils.url = "github:numtide/flake-utils";
extra-container = {

View file

@ -2,13 +2,6 @@
pkgs: pkgsUnstable:
{
inherit (pkgs)
extra-container
hwi
lightning-loop
lightning-pool
lndconnect;
inherit (pkgsUnstable)
bitcoin
bitcoind
bitcoind-knots
@ -18,8 +11,16 @@ pkgs: pkgsUnstable:
clightning
electrs
elementsd
extra-container
fulcrum
lnd;
hwi
lightning-loop
lightning-pool
lnd
lndconnect;
inherit (pkgsUnstable)
;
inherit pkgs pkgsUnstable;
}