This commit is contained in:
Joshua Elmasri
2025-09-12 17:48:54 -05:00
parent 78202b0b74
commit 6063b1cb97
4 changed files with 647 additions and 6 deletions

View File

@@ -41,6 +41,7 @@ boot = {
# Enable "Silent Boot"
consoleLogLevel = 0;
initrd.verbose = false;
kernelPackages = pkgs.linuxPackages_latest;
kernelParams = [
"quiet"
"splash"
@@ -268,7 +269,7 @@ hardware.pulseaudio.extraConfig = ''
];
services.open-webui = {
enable = true;
enable = false;
port = 3246;
host = "0.0.0.0";
environment = {
@@ -338,6 +339,7 @@ hardware.pulseaudio.extraConfig = ''
gnomeExtensions.open-bar
parallel-launcher
wallust
termsonic
steamtinkerlaunch
grub2
vivaldi
@@ -345,6 +347,7 @@ hardware.pulseaudio.extraConfig = ''
inputs.zen-browser.packages."${system}".default
qalculate-qt
kdePackages.kdenlive
wineWowPackages.wayland
blueman
fuse
linux-wallpaperengine

View File

@@ -10,17 +10,16 @@
boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "nvme" "usbhid" "usb_storage" "sd_mod" ];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-amd" ];
boot.kernelModules = [ ];
boot.extraModulePackages = [ ];
fileSystems."/" =
{ device = "/dev/disk/by-uuid/b6501e43-45c0-46bc-b77f-2f42c3a15572";
fsType = "btrfs";
options = [ "subvol=@" ];
{ device = "/dev/disk/by-uuid/56963958-ba4d-413a-bb5e-30440a85f911";
fsType = "ext4";
};
fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/FE68-923D";
{ device = "/dev/disk/by-uuid/DC02-0B36";
fsType = "vfat";
options = [ "fmask=0077" "dmask=0077" ];
};