mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-01-11 09:44:08 -05:00
15 lines
239 B
Nix
15 lines
239 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
inputs,
|
|
...
|
|
}: {
|
|
environment.systemPackages =
|
|
if config.hostSpec.isMinimal
|
|
then [
|
|
inputs.nvix.packages.${pkgs.system}.mini
|
|
]
|
|
else [
|
|
inputs.nvix.packages.${pkgs.system}.default
|
|
];
|
|
}
|