Skip to content

Commit

Permalink
⚙️ value Update groupByConfig to nixos-22.11
Browse files Browse the repository at this point in the history
CI fails as poetry is currently unstable in 22.11. This should be fixed
when NixOS/nixpkgs#206127 is merged.
  • Loading branch information
Lord-Valen authored and blaggacao committed Jan 6, 2023
1 parent 12ec81f commit 703e030
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
8 changes: 4 additions & 4 deletions examples/groupByConfig/flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@

inputs = {
# Track channels with commits tested and built by hydra
nixos.url = "github:nixos/nixpkgs/nixos-22.05";
nixos.url = "github:nixos/nixpkgs/nixos-22.11";

# For darwin hosts: it can be helpful to track this darwin-specific stable
# channel equivalent to the `nixos-*` channels for NixOS. For one, these
# channels are more likely to provide cached binaries for darwin systems.
# But, perhaps even more usefully, it provides a place for adding
# darwin-specific overlays and packages which could otherwise cause build
# failures on Linux systems.
nixpkgs-darwin-stable.url = "github:NixOS/nixpkgs/nixpkgs-22.05-darwin";
nixpkgs-darwin-stable.url = "github:NixOS/nixpkgs/nixpkgs-22.11-darwin";

digga.url = "github:divnix/digga";
digga.inputs.nixpkgs.follows = "nixos";
Expand All @@ -23,7 +23,7 @@
home.inputs.nixpkgs.follows = "nixos";
};

outputs = inputs @ {
outputs = {
self,
nixos,
nixpkgs,
Expand All @@ -32,7 +32,7 @@
digga,
home,
...
}:
} @ inputs:
digga.lib.mkFlake {
inherit self inputs;

Expand Down
3 changes: 2 additions & 1 deletion examples/groupByConfig/nixos/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ in {
hosts = {
Morty = {
modules = [./Morty.nix];
tests = [allProfilesTest];
# FIXME: Causes infinite recursion
# tests = [allProfilesTest];
};
};

Expand Down

0 comments on commit 703e030

Please sign in to comment.