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 /hosts/muspell/default.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 'hosts/muspell/default.nix')
-rw-r--r-- | hosts/muspell/default.nix | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/hosts/muspell/default.nix b/hosts/muspell/default.nix index d2942c3..97d4b64 100644 --- a/hosts/muspell/default.nix +++ b/hosts/muspell/default.nix @@ -1,5 +1,7 @@ -{ mobile-nixos, lib, pkgs, ... }: +{ inputs, lib, pkgs, ... }: +let inherit (inputs) mobile-nixos; +in { imports = [ (import "${mobile-nixos}/lib/configuration.nix" { |