mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-01-11 09:44:08 -05:00
fix the minimal builds
This commit is contained in:
parent
d2ba31881e
commit
ef4ad51e86
2 changed files with 4 additions and 4 deletions
|
|
@ -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
|
||||||
]
|
]
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue