nixos-riscv/configuration.nix

35 lines
668 B
Nix
Raw Normal View History

2024-01-18 15:59:51 +01:00
{ config, lib, pkgs, modulesPath, ... }:
2022-06-25 17:37:18 +02:00
{
2024-01-18 15:59:51 +01:00
imports = [
"${modulesPath}/profiles/base.nix"
#"${modulesPath}/virtualisation/qemu-vm.nix"
];
networking.hostName = "visionfive-nix";
2023-11-09 12:09:05 +01:00
boot = {
kernelParams = [ "boot.shell_on_fail" ];
consoleLogLevel = lib.mkDefault 7;
initrd.kernelModules = [
2023-11-29 10:48:59 +01:00
"virtio_pci"
2023-11-09 12:09:05 +01:00
"virtio_blk"
2023-11-29 10:48:59 +01:00
"virtio_input"
"9pnet"
"9pnet_virtio"
2023-11-09 12:09:05 +01:00
];
2024-01-18 15:59:51 +01:00
loader = {
grub.enable = false;
generic-extlinux-compatible.enable = true;
};
2023-11-09 12:09:05 +01:00
};
2024-01-17 18:22:30 +01:00
nixpkgs.overlays = [ (import ./overlay.nix) ];
# Enable ssh on boot
services.openssh.enable = true;
2024-01-18 15:59:51 +01:00
system.stateVersion = "24.05";
2022-06-25 17:37:18 +02:00
}