diff options
| author | Alejandro Soto <alejandro@34project.org> | 2025-08-25 23:25:52 -0600 |
|---|---|---|
| committer | Alejandro Soto <alejandro@34project.org> | 2025-08-25 23:25:52 -0600 |
| commit | a8d37a6d4ad18b1e3764e99bed873b3db42af23c (patch) | |
| tree | 80a842198c506d856763730ab101b47423b4ff00 | |
| parent | f3c4dbd44492e9c74a748f07b35f5b6c34ba5537 (diff) | |
sys/nspawn: fix nspawn definition after switch to trivionomicon
Diffstat (limited to '')
| -rw-r--r-- | sys/nspawn/dmz.nix | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/sys/nspawn/dmz.nix b/sys/nspawn/dmz.nix index 805ca72..3263730 100644 --- a/sys/nspawn/dmz.nix +++ b/sys/nspawn/dmz.nix @@ -1,8 +1,9 @@ { - lib, config, - flakes, + lib, pkgs, + flakes, + doctrine, ... }: with lib; let @@ -129,15 +130,13 @@ in { }; }; in - # Tomado de la definición de pkgs.nixos junto con definición de nixpkgs.{pkgs,localSystem} arriba - import "${flakes.nixpkgs}/nixos/lib/eval-config.nix" { + flakes.trivionomicon.lib.mkSystem { + inherit doctrine flakes pkgs; + modules = [ ../. containerModule ]; - - system = null; - specialArgs = {inherit flakes;}; }; }; }; |
