Apply all pending changes excluding .sops.yaml
This commit is contained in:
parent
7b04942bb2
commit
89929ac69a
20 changed files with 439 additions and 167 deletions
|
|
@ -164,14 +164,14 @@ in {
|
|||
|
||||
# Bootloader.
|
||||
boot = {
|
||||
binfmt.emulatedSystems = ["aarch64-linux"];
|
||||
binfmt.emulatedSystems = lib.optional (config.system != "aarch64-linux") [ "aarch64-linux" ];
|
||||
# kernelPackages = pkgs.linuxPackages_latest;
|
||||
kernelPackages = pkgs.linuxPackages_zen;
|
||||
kernelParams = ["consoleblank=60" "mem_sleep_default=deep"];
|
||||
# extraModulePackages = [config.boot.kernelPackages.ddcci-driver];
|
||||
# kernelModules = ["i2c-dev" "ddcci_backlight"];
|
||||
loader =
|
||||
if (pkgs.hostPlatform != lib.mkDefault "aarch64-linux")
|
||||
if config.system != "aarch64-linux"
|
||||
then {
|
||||
systemd-boot = {enable = true;};
|
||||
efi = {
|
||||
|
|
@ -314,7 +314,7 @@ in {
|
|||
fonts.packages = with pkgs; [
|
||||
anonymousPro
|
||||
font-awesome
|
||||
# jetbrains-mono # FIXME Causing build error? 2026-02-25
|
||||
jetbrains-mono
|
||||
nerd-fonts.symbols-only
|
||||
nerd-fonts.roboto-mono
|
||||
nerd-fonts.monaspace
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue