refactoring

This commit is contained in:
ISnortPennies 2022-08-11 00:10:27 -04:00
parent 2b7d2bf54e
commit 90f4fe847a
9 changed files with 25 additions and 6 deletions

View file

@ -16,7 +16,7 @@
../modules/zsh.nix
];
networking.hostName = "gerg-desktop";
boot.kernelPackages = pkgs.linuxPackages_latest;
hardware.cpu.amd.updateMicrocode = true;
#end important stuff
environment.systemPackages = with pkgs; [
@ -31,5 +31,19 @@
extraGroups = [ "wheel" "audio" "networkmanager" "kvm" "libvirtd" ];
};
};
boot = {
initrd.availableKernelModules = [ "nvme" "xhci_pci" "ahci" "usbhid" "uas" "sd_mod" ];
kernelModules = [ "kvm-amd" ];
};
fileSystems = {
"/" ={
device = "/dev/disk/by-uuid/f0f46e34-874f-4052-855c-38c88bd7987a";
fsType = "ext4";
};
"/boot" = {
device = "/dev/disk/by-uuid/5F00-1D91";
fsType = "vfat";
};
};
}