cleanup common configs + disable CONFIG_VT if kmscon is enabled
Some checks failed
Build and Deploy / mreow (push) Failing after 40s
Build and Deploy / yarn (push) Failing after 41s
Build and Deploy / muffin (push) Successful in 1m7s

This commit is contained in:
2026-04-22 13:18:34 -04:00
parent f03cc87fc9
commit d73ff40e0e
7 changed files with 62 additions and 65 deletions

View File

@@ -10,10 +10,7 @@
}:
{
imports = [
# shared across all hosts
./common-doas.nix
./common-shell-fish.nix
./common-nix.nix
./common.nix
# desktop-only modules
./desktop-vm.nix
@@ -34,8 +31,6 @@
hardware.enableRedistributableFirmware = true;
hardware.cpu.amd.updateMicrocode = true;
services.kmscon.enable = true;
# Add niri to display manager session packages
services.displayManager.sessionPackages = [ niri-package ];
@@ -255,6 +250,8 @@
SGETMASK_SYSCALL = lib.mkForce no;
UID16 = lib.mkForce no;
X86_X32_ABI = lib.mkForce no;
VT = lib.mkForce (!config.services.kmscon.enable);
};
}
];