You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
280 B
Nix
18 lines
280 B
Nix
2 months ago
|
{
|
||
|
inputs,
|
||
|
lib,
|
||
|
self,
|
||
|
...
|
||
|
}@flakeArg:
|
||
|
{ system, ... }@sysArg:
|
||
|
{
|
||
|
|
||
|
# shortcut to fully configured secrix
|
||
|
secrix =
|
||
|
assert lib.assertMsg (system == "x86_64-linux") ''
|
||
|
secrix is currently only compatible with x86_64-linux
|
||
|
'';
|
||
|
inputs.secrix.secrix self;
|
||
|
|
||
|
}
|