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.
server/nix/apps/default.nix

18 lines
280 B
Nix

{
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;
}