feat(Infini-DESKTOP): add bud, update hardware

This commit is contained in:
Infinidoge 2021-09-13 14:30:54 -04:00
parent 47444ea40b
commit dd5d4a9a13
2 changed files with 16 additions and 10 deletions

View file

@ -13,6 +13,9 @@
system.stateVersion = "21.05"; system.stateVersion = "21.05";
bud.enable = true;
bud.localFlakeClone = "/home/infinidoge/Projects/DevOS";
networking = { networking = {
interfaces = { interfaces = {
# Enable DHCP per interface # Enable DHCP per interface

View file

@ -4,32 +4,35 @@
{ config, lib, pkgs, modulesPath, ... }: { config, lib, pkgs, modulesPath, ... }:
{ {
imports = imports = [ ];
[ (modulesPath + "/installer/scan/not-detected.nix")
];
boot.initrd.availableKernelModules = [ "nvme" "ahci" "xhci_pci" "usbhid" "usb_storage" "sd_mod" ]; boot.initrd.availableKernelModules = [ "nvme" "ahci" "xhci_pci" "usbhid" "sd_mod" ];
boot.initrd.kernelModules = [ ]; boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-amd" ]; boot.kernelModules = [ "kvm-amd" ];
boot.extraModulePackages = [ ]; boot.extraModulePackages = [ ];
fileSystems."/" = fileSystems."/" =
{ device = "/dev/disk/by-uuid/c40e2655-8f7e-4dd3-95ab-f2d48639cc59"; {
device = "/dev/disk/by-uuid/c40e2655-8f7e-4dd3-95ab-f2d48639cc59";
fsType = "ext4"; fsType = "ext4";
}; };
fileSystems."/boot" = fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/21E6-6801"; {
device = "/dev/disk/by-uuid/21E6-6801";
fsType = "vfat"; fsType = "vfat";
}; };
fileSystems."/home" = fileSystems."/home" =
{ device = "/dev/disk/by-uuid/26438642-0683-4ce3-af6b-b555cb8e388d"; {
device = "/dev/disk/by-uuid/26438642-0683-4ce3-af6b-b555cb8e388d";
fsType = "ext4"; fsType = "ext4";
}; };
swapDevices = swapDevices = [
[ { device = "/dev/disk/by-uuid/dfbe858e-5732-48d7-8777-37ed19138d7e"; } {
]; device = "/dev/disk/by-uuid/dfbe858e-5732-48d7-8777-37ed19138d7e";
}
];
} }