forked from pub-solar/os
dumpyourvms: fix Error switching console mode to 1 unsupported
This commit is contained in:
parent
6c83d67887
commit
f791ceccd0
|
@ -1,10 +1,14 @@
|
|||
{ config, pkgs, lib, self, ... }:
|
||||
with lib;
|
||||
let
|
||||
{
|
||||
config,
|
||||
pkgs,
|
||||
lib,
|
||||
self,
|
||||
...
|
||||
}:
|
||||
with lib; let
|
||||
psCfg = config.pub-solar;
|
||||
xdg = config.home-manager.users."${psCfg.user.name}".xdg;
|
||||
in
|
||||
{
|
||||
in {
|
||||
imports = [
|
||||
./hardware-configuration.nix
|
||||
];
|
||||
|
@ -32,6 +36,9 @@ in
|
|||
boot.loader.efi.canTouchEfiVariables = true;
|
||||
#boot.resumeDevice = "/dev/mapper/cryptroot";
|
||||
|
||||
# fix for Error switching console mode to 1: unsupported on startup
|
||||
boot.loader.systemd-boot.consoleMode = mkForce "0";
|
||||
|
||||
boot.binfmt.emulatedSystems = ["aarch64-linux"];
|
||||
|
||||
systemd.sleep.extraConfig = ''
|
||||
|
@ -133,7 +140,6 @@ in
|
|||
extraGroups = ["unbound"];
|
||||
};
|
||||
|
||||
|
||||
# WLAN frequency compliance (e.g. check for radar with DFS)
|
||||
#
|
||||
# Radeon driver seems to work better than amdgpu with Radeon R9 M370X
|
||||
|
|
Loading…
Reference in a new issue