quitte: move back to bare-metal

Das Proxmox ist tot. Lang lebe NixOS!
This commit is contained in:
Rouven Seifert 2024-03-28 18:06:41 +01:00
parent e18a99c452
commit f2af8d0a75
Signed by: rouven.seifert
GPG key ID: B95E8FE6B11C4D09
5 changed files with 42 additions and 38 deletions

View file

@ -1,4 +1,4 @@
{ pkgs, ... }:
{ pkgs, config, ... }:
{
imports =
@ -7,22 +7,22 @@
./network.nix
];
# Use the systemd-boot EFI boot loader.
boot.loader.systemd-boot.enable = true;
#boot.kernelPackages = config.boot.zfs.package.latestCompatibleLinuxPackages;
#boot.kernelParams = [ "video=VGA-1:1024x768@30" ];
# boot.kernelParams = [ "video=VGA-1:1024x768@30" ];
boot.loader.efi.canTouchEfiVariables = true;
#boot.supportedFilesystems = [ "zfs" ];
#boot.zfs.devNodes = "/dev/";
boot.supportedFilesystems = [ "zfs" ];
boot.kernelPackages = config.boot.zfs.package.latestCompatibleLinuxPackages;
boot.zfs = {
forceImportRoot = true;
};
services.qemuGuest.enable = true;
# services.qemuGuest.enable = true;
# Set your time zone.
time.timeZone = "Europe/Berlin";
i18n.defaultLocale = "en_US.UTF-8";
# List packages installed in system profile. To search, run:
# $ nix search wget
environment.systemPackages = with pkgs; [
vim
wget