diff options
| author | Alejandro Soto <alejandro@34project.org> | 2024-04-20 23:24:22 -0600 |
|---|---|---|
| committer | Alejandro Soto <alejandro@34project.org> | 2024-04-20 23:24:22 -0600 |
| commit | 5282d5fcd323bfd64b89934680cb1295918b643e (patch) | |
| tree | e7357edc648a60adfbe3ef44b849660b95c9188a | |
| parent | 4c153ed633acbeaf52bf19b3365fb2d2f312867b (diff) | |
flake: pass all flakes as specialArgs to sys
Diffstat (limited to '')
| -rw-r--r-- | flake.nix | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -19,7 +19,7 @@ }; outputs = - { self, nixpkgs, unstable, home-manager, nur, impermanence, hm-isolation, nixvirt, ... }: + flakes@{ self, nixpkgs, unstable, home-manager, nur, impermanence, hm-isolation, nixvirt }: let system = "x86_64-linux"; @@ -59,6 +59,10 @@ nixpkgs.nixosModules.notDetected impermanence.nixosModule ]; + + specialArgs = { + inherit flakes; + }; }; hostConfig = host: nixosSystem { |
