initial commit x2

This commit is contained in:
sophron
2025-06-23 00:47:36 +05:00
commit f2f225110a
193 changed files with 4737 additions and 0 deletions

29
system/boot.nix Normal file
View File

@@ -0,0 +1,29 @@
{ config, pkgs, ... }: {
boot = {
kernelPackages = pkgs.linuxPackages_zen;
kernelModules = [ "kvm-intel" ];
kernelParams = [ "quiet" "splash" ];
blacklistedKernelModules = [ "nouveau" ];
consoleLogLevel = 3;
initrd = {
availableKernelModules = [ "xhci_pci" "ahci" "usbhid" "uas" "sd_mod" "sdhci_pci" ];
kernelModules = [ "i915" ];
verbose = false;
};
loader = {
timeout = 7;
efi = {
canTouchEfiVariables = true;
efiSysMountPoint = "/boot";
};
grub = {
efiSupport = true;
device = "nodev";
};
};
plymouth = {
enable = true;
theme = "bgrt";
};
};
}