nixy/systemd: fix vconsole setup service

This commit is contained in:
Asmir A 2025-06-08 14:37:18 +02:00
parent 6e32ea5dee
commit 7e3dbe0a70
Signed by: asmir
GPG Key ID: 020C42B7A9ABA3E2

View File

@ -1,11 +1,10 @@
{
config,
nix-xilinx,
nvim,
pkgs,
system,
zremap,
...
{ config
, nix-xilinx
, nvim
, pkgs
, system
, zremap
, ...
}:
let
USER = "akill";
@ -255,6 +254,14 @@ in
# List services that you want to enable:
systemd = {
services = {
# Fix issue where systemd-vconsole-setup failes to find keymap
systemd-vconsole-setup = {
unitConfig = {
After = "local-fs.target";
};
};
"zremap@" = {
enable = true;
restartIfChanged = true;