57 lines
1,000 B
Nix
57 lines
1,000 B
Nix
{ nixos-hardware, disko, ... }:
|
|
{ modulesPath, ... }:
|
|
{
|
|
imports = [
|
|
"${modulesPath}/nixos/virtualisation/qemu-guest-agent.nix"
|
|
|
|
nixos-hardware.nixosModules.common-cpu-intel
|
|
nixos-hardware.nixosModules.common-pc-ssd
|
|
|
|
disko.nixosModules.disko
|
|
|
|
./storage.nix
|
|
];
|
|
|
|
eboskma = {
|
|
users.erwin = {
|
|
enable = true;
|
|
};
|
|
|
|
base = {
|
|
plymouth.enable = true;
|
|
};
|
|
|
|
nix-common = {
|
|
enable = true;
|
|
remote-builders = true;
|
|
};
|
|
|
|
# libvirt.enable = true;
|
|
systemd.enable = true;
|
|
};
|
|
|
|
networking.hostName = "odin";
|
|
|
|
boot = {
|
|
loader = {
|
|
systemd-boot = {
|
|
enable = true;
|
|
configurationLimit = 10;
|
|
};
|
|
efi.canTouchEfiVariables = true;
|
|
};
|
|
|
|
initrd = {
|
|
availableKernelModules = [ "xhci_pci" "ahci" "usb_storage" "usbhid" "sd_mod" ];
|
|
kernelModules = [ ];
|
|
};
|
|
|
|
kernelModules = [ "kvm-intel" ];
|
|
};
|
|
|
|
hardware.enableAllFirmware = true;
|
|
|
|
services.qemuGuest = {
|
|
enable = true;
|
|
};
|
|
}
|