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
];
}

View file

@ -10,8 +10,7 @@ lib.mkIf (!config.hostSpec.isMinimal) {
# Emoji and general symbols
noto-fonts
noto-fonts-cjk-sans
noto-fonts-emoji
noto-fonts-extra
noto-fonts-color-emoji
unifont
# Nerd fonts

View file

@ -4,7 +4,8 @@
lib,
pkgs,
...
}: {
}:
{
# Setup access to protected repos via our host ssh key
environment.etc."ssh/root_config".text = ''
Host github.com