nixos: Build fix

This commit is contained in:
kat witch 2021-05-13 17:14:45 +01:00
parent d3b06255db
commit b124bf26a8
No known key found for this signature in database
GPG key ID: 1B477797DCA5EC72

View file

@ -7,7 +7,7 @@
# trusted check
++ lib.optional (builtins.pathExists (./trusted/hosts + "/${hostName}/nixos")) (import (./trusted/hosts + "/${hostName}/nixos"))
# trusted default check
++ lib.optional (builtins.pathExists ./trusted) (import ./trusted/hosts)
++ lib.optional (builtins.pathExists ./trusted/hosts) (import ./trusted/hosts)
# trusted profile check
++ lib.optional (builtins.pathExists ./trusted/profile) (import ./trusted/profile);