mirror of
https://github.com/JulienMalka/snowfield.git
synced 2025-03-25 21:30:52 +01:00
41 lines
837 B
Nix
41 lines
837 B
Nix
{ pkgs, ... }:
|
|
{
|
|
boot.initrd.availableKernelModules = [ "ata_piix" "uhci_hcd" "virtio_pci" "sd_mod" "sr_mod" ];
|
|
boot.kernelPackages = pkgs.linuxPackages_5_15;
|
|
|
|
boot.initrd.kernelModules = [ ];
|
|
boot.kernelModules = [ ];
|
|
boot.extraModulePackages = [ ];
|
|
boot.loader.systemd-boot.enable = true;
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
|
fileSystems."/" =
|
|
{
|
|
device = "zroot/root";
|
|
fsType = "zfs";
|
|
};
|
|
|
|
fileSystems."/boot" =
|
|
{
|
|
device = "/dev/disk/by-uuid/4E38-3626";
|
|
fsType = "vfat";
|
|
};
|
|
swapDevices = [ ];
|
|
|
|
|
|
boot.initrd.network = {
|
|
enable = true;
|
|
ssh = {
|
|
enable = true;
|
|
port = 2222;
|
|
hostKeys = [ /boot/initrd-ssh-key ];
|
|
};
|
|
postCommands = ''
|
|
zpool import zroot
|
|
echo "zfs load-key -a; killall zfs" >> /root/.profile
|
|
'';
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|