67 lines
1.6 KiB
Nix
67 lines
1.6 KiB
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
boot = {
|
|
initrd.availableKernelModules = [ "ahci" "xhci_pci" "ehci_pci" "megaraid_sas" "nvme" "usbhid" "usb_storage" "sd_mod" "sr_mod" ];
|
|
kernelModules = [ "kvm-intel" ];
|
|
loader = {
|
|
systemd-boot.enable = true;
|
|
efi.canTouchEfiVariables = true;
|
|
};
|
|
kernelPakcages = pkgs.linuxPackages_latest;
|
|
swraid = {
|
|
enable = true;
|
|
mdadmConf = ''
|
|
ARRAY /dev/md/ROOT metadata=1.2 UUID=acd8260f-e30f-2f3f-74f7-e51ee905a498
|
|
MAILADDR root@localhost
|
|
'';
|
|
};
|
|
};
|
|
|
|
fileSystems = {
|
|
"/" = {
|
|
device = "/dev/disk/by-uuid/e44cfa13-868e-4d26-b3de-5a8ae92bb055";
|
|
fsType = "ext4";
|
|
options = [ "discard" "noatime" ];
|
|
};
|
|
"/boot" = {
|
|
device = "/dev/disk/by-uuid/AD5C-950B";
|
|
fsType = "vfat";
|
|
options = [ "fmask=0022" "dmask=0022" "discard" "noatime" ];
|
|
};
|
|
};
|
|
|
|
swapDevices = [
|
|
{ device = "/dev/disk/by-uuid/e8825b01-f91e-4c4f-8916-bffeb6fac0cd"; }
|
|
{ device = "/dev/disk/by-uuid/5b53c0b9-ab57-4992-8e81-957e19c7b685"; }
|
|
];
|
|
|
|
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
|
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
|
|
|
time.timeZone = "Europe/Berlin";
|
|
|
|
console = {
|
|
font = "Lat2-Terminus16";
|
|
useXkbConfig= true;
|
|
};
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
git
|
|
];
|
|
|
|
virtualisation = {
|
|
useEFIBoot = true;
|
|
libvirtd = {
|
|
enable = true;
|
|
nss.enableGuest = true;
|
|
startDelay = 1;
|
|
onShutdown = "shutdown";
|
|
};
|
|
};
|
|
#rootDevice = "/dev/disk/by-label/nixos";
|
|
#mountHostNixStore = true;
|
|
|
|
system.stateVersion = "25.11";
|
|
}
|
|
|