mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-01-10 01:24:05 -05:00
17 lines
295 B
Nix
17 lines
295 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
inputs,
|
|
...
|
|
}:
|
|
{
|
|
environment.systemPackages =
|
|
if config.hostSpec.isMinimal then
|
|
[
|
|
inputs.nvix.packages.${pkgs.stdenv.hostPlatform.system}.mini
|
|
]
|
|
else
|
|
[
|
|
inputs.nvix.packages.${pkgs.stdenv.hostPlatform.system}.default
|
|
];
|
|
}
|