NixOS 25.11 migration

This commit is contained in:
TheWanderingCrow 2025-12-01 08:24:10 -05:00
parent bc5129a87d
commit 5718c8ca6d
16 changed files with 107 additions and 463 deletions

View file

@ -3,13 +3,15 @@
pkgs,
inputs,
...
}: {
}:
{
environment.systemPackages =
if config.hostSpec.isMinimal
then [
inputs.nvix.packages.${pkgs.system}.mini
]
else [
inputs.nvix.packages.${pkgs.system}.default
];
if config.hostSpec.isMinimal then
[
inputs.nvix.packages.${pkgs.stdenv.hostPlatform.system}.mini
]
else
[
inputs.nvix.packages.${pkgs.stdenv.hostPlatform.system}.default
];
}