wip: continue

This commit is contained in:
Leon Schwarzäugl 2026-04-04 00:26:57 +02:00
parent fa9bd32b0b
commit e4c8bdced6
Signed by: swarsel
GPG key ID: 26A54C31F2A4FD84
3 changed files with 8 additions and 6 deletions

View file

@ -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 { };

View file

@ -1,7 +1,7 @@
{ inputs, ... }:
{
den.aspects.boot = { pkgs, ... }: {
nixos = {
den.aspects.boot = {
nixos = { pkgs, ... }: {
imports = [
inputs.lanzaboote.nixosModules.lanzaboote
];

View file

@ -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 { };