fix deprecated pkgs.system alias
This commit is contained in:
parent
167f213fd0
commit
99ea4bd1d4
1 changed files with 3 additions and 1 deletions
|
|
@ -111,7 +111,9 @@
|
|||
let
|
||||
inherit (nixpkgs) lib;
|
||||
nixosConfigurations = import ./nixosConfigurations.nix { inherit inputs lib; };
|
||||
supported-systems = lib.unique (lib.mapAttrsToList (_: v: v.pkgs.system) nixosConfigurations);
|
||||
supported-systems = lib.unique (
|
||||
lib.mapAttrsToList (_: v: v.pkgs.stdenv.hostPlatform.system) nixosConfigurations
|
||||
);
|
||||
treefmt-config = {
|
||||
projectRootFile = "flake.nix";
|
||||
programs = {
|
||||
|
|
|
|||
Loading…
Reference in a new issue