mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-01-11 09:44:08 -05:00
use mini nvix for minimal
This commit is contained in:
parent
a11df33b8c
commit
3b7d270f08
1 changed files with 9 additions and 3 deletions
|
|
@ -1,9 +1,15 @@
|
|||
{
|
||||
hostSpec,
|
||||
pkgs,
|
||||
inputs,
|
||||
...
|
||||
}: {
|
||||
environment.systemPackages = [
|
||||
inputs.nvix.packages.${pkgs.system}.default
|
||||
];
|
||||
environment.systemPackages =
|
||||
if hostSpec.isMinimal
|
||||
then [
|
||||
inputs.nvix.packages.${pkgs.system}.mini
|
||||
]
|
||||
else [
|
||||
inputs.nvix.packages.${pkgs.system}.default
|
||||
];
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue