mirror of
https://github.com/divnix/digga.git
synced 2024-12-22 23:51:39 +03:00
⚙️ value
Update groupByConfig to nixos-22.11
CI fails as poetry is currently unstable in 22.11. This should be fixed when https://github.com/NixOS/nixpkgs/pull/206127 is merged.
This commit is contained in:
parent
12ec81f9c3
commit
703e030dd2
@ -3,7 +3,7 @@
|
||||
|
||||
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
|
||||
@ -11,7 +11,7 @@
|
||||
# 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";
|
||||
@ -23,7 +23,7 @@
|
||||
home.inputs.nixpkgs.follows = "nixos";
|
||||
};
|
||||
|
||||
outputs = inputs @ {
|
||||
outputs = {
|
||||
self,
|
||||
nixos,
|
||||
nixpkgs,
|
||||
@ -32,7 +32,7 @@
|
||||
digga,
|
||||
home,
|
||||
...
|
||||
}:
|
||||
} @ inputs:
|
||||
digga.lib.mkFlake {
|
||||
inherit self inputs;
|
||||
|
||||
|
@ -12,7 +12,8 @@ in {
|
||||
hosts = {
|
||||
Morty = {
|
||||
modules = [./Morty.nix];
|
||||
tests = [allProfilesTest];
|
||||
# FIXME: Causes infinite recursion
|
||||
# tests = [allProfilesTest];
|
||||
};
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user