Skip to content

Commit

Permalink
notice-me-senpai: use nixpkgs 23.11
Browse files Browse the repository at this point in the history
  • Loading branch information
marenz2569 committed Jun 15, 2024
1 parent 924920f commit c1cc7b1
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
17 changes: 17 additions & 0 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.05";
nixpkgs-2311.url = "github:NixOS/nixpkgs/nixos-23.11";

# naersk and flake utils are not used by this flake directly, but needed
# for the follows in all the other ones.
Expand Down Expand Up @@ -122,6 +123,7 @@
, kindergarten
, microvm
, nixpkgs
, nixpkgs-2311
, sops-nix
, lizard
, bureaucrat
Expand Down Expand Up @@ -291,7 +293,8 @@
# here we evaluate over all nixos configurations making this extremely slow
apps."x86_64-linux" = (import ./pkgs/deployment.nix { inherit self pkgs lib; });

nixosConfigurations = lib.attrsets.mapAttrs (name: value: nixpkgs.lib.nixosSystem value) unevaluatedNixosConfigurations;
nixosConfigurations = lib.attrsets.mapAttrs (name: value:
(if (name == "notice-me-senpai") then (nixpkgs-2311.lib.nixosSystem value) else (nixpkgs.lib.nixosSystem value))) unevaluatedNixosConfigurations;

hydraJobs =
let
Expand Down

0 comments on commit c1cc7b1

Please sign in to comment.