fix the minimal builds

This commit is contained in:
TheWanderingCrow 2025-08-01 09:09:11 -04:00
parent d2ba31881e
commit ef4ad51e86
2 changed files with 4 additions and 4 deletions

View file

@ -1,11 +1,11 @@
{ {
hostSpec, config,
pkgs, pkgs,
inputs, inputs,
... ...
}: { }: {
environment.systemPackages = environment.systemPackages =
if hostSpec.isMinimal if config.hostSpec.isMinimal
then [ then [
inputs.nvix.packages.${pkgs.system}.mini inputs.nvix.packages.${pkgs.system}.mini
] ]

View file

@ -1,10 +1,10 @@
{ {
lib, lib,
hostSpec, config,
pkgs, pkgs,
... ...
}: }:
lib.mkIf (!hostSpec.isMinimal) { lib.mkIf (!config.hostSpec.isMinimal) {
fonts = { fonts = {
packages = with pkgs; [ packages = with pkgs; [
# Emoji and general symbols # Emoji and general symbols