From e4c8bdced6de3d0e14782472a2256cc26a8cddcb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Leon=20Schwarz=C3=A4ugl?= Date: Sat, 4 Apr 2026 00:26:57 +0200 Subject: [PATCH] wip: continue --- SwarselSystems.org | 7 ++++--- aspects/boot.nix | 4 ++-- aspects/nixpkgs.nix | 3 ++- 3 files changed, 8 insertions(+), 6 deletions(-) diff --git a/SwarselSystems.org b/SwarselSystems.org index 2fe8f77..d6b0c45 100644 --- a/SwarselSystems.org +++ b/SwarselSystems.org @@ -10042,8 +10042,8 @@ This is the battery for PII #+begin_src nix-ts :tangle aspects/boot.nix { inputs, ...}: { - den.aspects.boot = { lib, pkgs, ... }: { - nixos = { + den.aspects.boot = { + nixos = { pkgs, ... }: { imports = [ inputs.lanzaboote.nixosModules.lanzaboote ]; @@ -10066,8 +10066,9 @@ This is the battery for PII **** nixpkgs #+begin_src nix-ts :tangle aspects/nixpkgs.nix - { self, den, lib, ... }: + { self, den, ... }: let + inherit (self.outputs) lib; nixpkgsModule = from: let config = if (from ? host) then from.host else if (from ? home) then from.home else { }; diff --git a/aspects/boot.nix b/aspects/boot.nix index 13b124a..26758c9 100644 --- a/aspects/boot.nix +++ b/aspects/boot.nix @@ -1,7 +1,7 @@ { inputs, ... }: { - den.aspects.boot = { pkgs, ... }: { - nixos = { + den.aspects.boot = { + nixos = { pkgs, ... }: { imports = [ inputs.lanzaboote.nixosModules.lanzaboote ]; diff --git a/aspects/nixpkgs.nix b/aspects/nixpkgs.nix index 7333f49..c9c67e6 100644 --- a/aspects/nixpkgs.nix +++ b/aspects/nixpkgs.nix @@ -1,5 +1,6 @@ -{ self, den, lib, ... }: +{ self, den, ... }: let + inherit (self.outputs) lib; nixpkgsModule = from: let config = if (from ? host) then from.host else if (from ? home) then from.home else { };