diff options
author | Simon Parri <simonparri@ganzeria.com> | 2025-05-15 22:43:10 -0500 |
---|---|---|
committer | Simon Parri <simonparri@ganzeria.com> | 2025-05-15 22:49:32 -0500 |
commit | ef3b728dd8225e16a3a43b042674361765b41876 (patch) | |
tree | 238d0ca43014f55eb79773020c6682a9b1bfbfeb /flake.nix | |
parent | 26397a98ece50645e8ad1f0f0a67da32a4c3b4df (diff) | |
download | nixos-config-ef3b728dd8225e16a3a43b042674361765b41876.tar.gz nixos-config-ef3b728dd8225e16a3a43b042674361765b41876.zip |
Change modules to pass flake inputs collectively, not individually
Diffstat (limited to 'flake.nix')
-rw-r--r-- | flake.nix | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -9,10 +9,10 @@ }; }; - outputs = { self, nixpkgs, mobile-nixos }: { + outputs = inputs@{ self, ... }: { nixosConfigurations = import ./hosts { - inherit nixpkgs mobile-nixos; + inherit inputs; }; muspell-img = self.nixosConfigurations. |