diff options
author | makefu <github@syntax-fehler.de> | 2021-11-23 23:46:11 +0100 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2021-11-23 23:46:11 +0100 |
commit | 60b7a7bded68ebd3a5d76b6e0374e189f3a64300 (patch) | |
tree | 1b7ca7a73cd43e0a4199f8f71425b1379e3bcf66 /krebs/1systems/arcadeomat/hw.nix | |
parent | 597f546e9833b2569ee6ec540f688f7fb95bd26c (diff) |
arcadeomat.r: init
Diffstat (limited to 'krebs/1systems/arcadeomat/hw.nix')
-rw-r--r-- | krebs/1systems/arcadeomat/hw.nix | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/krebs/1systems/arcadeomat/hw.nix b/krebs/1systems/arcadeomat/hw.nix new file mode 100644 index 000000000..b24deeecb --- /dev/null +++ b/krebs/1systems/arcadeomat/hw.nix @@ -0,0 +1,25 @@ + +{ config, lib, pkgs, modulesPath, ... }: + +{ + imports = + [ (modulesPath + "/installer/scan/not-detected.nix") + ]; + + boot.initrd.availableKernelModules = [ "ahci" "ohci_pci" "ehci_pci" "pata_atiixp" "usbhid" "sd_mod" ]; + boot.initrd.kernelModules = [ ]; + boot.kernelModules = [ "kvm-amd" ]; + boot.extraModulePackages = [ ]; + + fileSystems."/" = + { device = "/dev/disk/by-uuid/0aae456e-0548-4917-a282-11d5d4e403cf"; + fsType = "ext4"; + }; + + swapDevices = [ ]; + boot.loader.grub.enable = true; + boot.loader.grub.version = 2; + boot.loader.grub.device = "/dev/sda"; + boot.loader.grub.copyKernels = true; + +} |