summaryrefslogtreecommitdiff
path: root/hosts/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/default.nix')
-rw-r--r--hosts/default.nix16
1 files changed, 13 insertions, 3 deletions
diff --git a/hosts/default.nix b/hosts/default.nix
index 15a94fa..bb94007 100644
--- a/hosts/default.nix
+++ b/hosts/default.nix
@@ -7,7 +7,7 @@
...
}:
let
- secrets = import ../lib/secrets.nix { inherit self; };
+ secrets = import "${self}/lib/secrets.nix" { inherit self; };
in
{
flake.nixosConfigurations = with lib; {
@@ -19,7 +19,12 @@ in
})."x86_64-linux";
specialArgs = {
- inherit inputs outputs secrets;
+ inherit
+ inputs
+ outputs
+ secrets
+ self
+ ;
};
modules = with inputs; [
@@ -35,7 +40,12 @@ in
himeji = nixosSystem {
specialArgs = {
- inherit inputs outputs secrets;
+ inherit
+ inputs
+ outputs
+ secrets
+ self
+ ;
};
modules = with inputs; [