Skip to content

Commit 857ff97

Browse files
fix: Update nixpkgs version for publish workflow, add comments on where to update nixpkgs
1 parent ced8b8f commit 857ff97

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/publish.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: "Install Nix"
2525
uses: cachix/install-nix-action@v31
2626
with:
27-
nix_path: nixpkgs=channel:25.05
27+
nix_path: nixpkgs=channel:25.11 # Change me on NixOS upgrades!
2828
- name: Build ISO images
2929
run: >
3030
nix run nixpkgs#nixos-generators -- \

flake.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
description = "Basic NixOS setup with cloud-init, intended to be made into an ISO";
33

44
inputs = {
5-
nixpkgs.url = "github:nixos/nixpkgs/nixos-25.11";
5+
nixpkgs.url = "github:nixos/nixpkgs/nixos-25.11"; # Change me on NixOS upgrades!
66
};
77

88
outputs = { self, nixpkgs }: {

0 commit comments

Comments
 (0)