28 lines
529 B
Nix
28 lines
529 B
Nix
{ pkgs, ... }:
|
|
{
|
|
imports = [
|
|
./options.nix
|
|
./disko.nix
|
|
];
|
|
|
|
nixpkgs.hostPlatform = "x86_64-linux";
|
|
|
|
networking = {
|
|
hostName = "ellaca";
|
|
domain = "twoneis.site";
|
|
};
|
|
|
|
boot = {
|
|
initrd.availableKernelModules = [ "ata_piix" "uhci_hcd" "virtio_pci" "virtio_scsi" "sd_mod" ];
|
|
kernelPackages = pkgs.linuxPackages_latest;
|
|
loader = {
|
|
grub = {
|
|
devices = [ "/dev/sda" ];
|
|
useOSProber = true;
|
|
efiSupport = true;
|
|
efiInstallAsRemovable = true;
|
|
};
|
|
};
|
|
};
|
|
|
|
}
|