add flake submodule flake reflection & fix secrix app

broken in 291bf42e2a
as `self` of flake was becoming inaccessible.
further hidden with a448ae9fb1
because it overloaded the former self argument
main
Felix Stupp 2 months ago
parent e8c95cc669
commit b7fb087660
Signed by: zocker
GPG Key ID: 93E1BD26F6B02FB7

@ -48,6 +48,7 @@
# Usage in submodule:
# { ... }@flakeArg: { }
# add "..." this so new ones can easily be added
flake = self; # full flake reflection
inherit
# tools / shortcuts
lib # nixpkgs & my lib combined

@ -1,7 +1,7 @@
{
flake,
inputs,
lib,
self,
...
}@flakeArg:
{ system, ... }@sysArg:
@ -12,6 +12,6 @@
assert lib.assertMsg (system == "x86_64-linux") ''
secrix is currently only compatible with x86_64-linux
'';
inputs.secrix.secrix self;
inputs.secrix.secrix flake;
}

Loading…
Cancel
Save