8 lines
233 B
Nix
8 lines
233 B
Nix
|
{ flake-utils, lib }:
|
||
|
|
||
|
let
|
||
|
defaultLinuxSystems = lib.filter (system: lib.strings.hasSuffix "-linux" system) flake-utils.lib.defaultSystems;
|
||
|
in {
|
||
|
eachDefaultLinuxSystem = arg: flake-utils.lib.eachSystem defaultLinuxSystems arg;
|
||
|
}
|