mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-01-11 09:44:08 -05:00
NixOS 25.11 migration
This commit is contained in:
parent
bc5129a87d
commit
5718c8ca6d
16 changed files with 107 additions and 463 deletions
|
|
@ -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
|
||||
];
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue