summaryrefslogtreecommitdiff
path: root/nixos/modules
diff options
context:
space:
mode:
authorseraphim <18ycm9tx@anonaddy.me>2026-07-30 12:48:20 +0700
committerseraphim <18ycm9tx@anonaddy.me>2026-07-30 12:48:20 +0700
commit59226408d8bc950d7ec8c21623f28b5f7de8fce0 (patch)
tree894884db76e33f9130f519e82ebfefd39ea70309 /nixos/modules
parent012d59987c8d78264f4a405ca595c50706e43b33 (diff)
Dendritic nixos update!
Diffstat (limited to 'nixos/modules')
-rw-r--r--nixos/modules/features/fonts/default.nix2
-rw-r--r--nixos/modules/features/terminals/default.nix2
-rw-r--r--nixos/modules/system/boot/default.nix14
3 files changed, 3 insertions, 15 deletions
diff --git a/nixos/modules/features/fonts/default.nix b/nixos/modules/features/fonts/default.nix
index 8ac4785..cecdd8f 100644
--- a/nixos/modules/features/fonts/default.nix
+++ b/nixos/modules/features/fonts/default.nix
@@ -3,7 +3,7 @@
{
fonts.fontconfig.enable = true;
- environment.systemPackages = with pkgs; [
+ fonts.packages = with pkgs; [
font-awesome
nerd-fonts.jetbrains-mono
nerd-fonts.symbols-only
diff --git a/nixos/modules/features/terminals/default.nix b/nixos/modules/features/terminals/default.nix
index 22c5662..a290b42 100644
--- a/nixos/modules/features/terminals/default.nix
+++ b/nixos/modules/features/terminals/default.nix
@@ -5,4 +5,4 @@
foot
ghostty
];
-} \ No newline at end of file
+}
diff --git a/nixos/modules/system/boot/default.nix b/nixos/modules/system/boot/default.nix
index eedf939..df64426 100644
--- a/nixos/modules/system/boot/default.nix
+++ b/nixos/modules/system/boot/default.nix
@@ -1,18 +1,9 @@
-{ config, pkgs, lib, modulesPath, ... }:
+{ pkgs, ... }:
{
- imports = [
- (modulesPath + "/installer/scan/not-detected.nix")
- ];
-
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
- boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" ];
- boot.initrd.kernelModules = [ ];
- boot.kernelModules = [ "kvm-amd" ];
- boot.extraModulePackages = [ ];
-
# EDID firmware loading is kept here because it's a kernel-level boot concern.
# Commented kernel params from the original config are preserved.
# boot.kernelParams = [
@@ -25,7 +16,4 @@
cp ${../../../mi_edid.bin} $out/lib/firmware/edid/mi_edid.bin
'')
];
-
- nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
- hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
} \ No newline at end of file