quitte: move back to bare-metal
Das Proxmox ist tot. Lang lebe NixOS!
This commit is contained in:
parent
e18a99c452
commit
f2af8d0a75
5 changed files with 42 additions and 38 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue