Migrate aspi host config

This commit is contained in:
2025-04-22 22:47:36 +02:00
parent 05350e1c1c
commit 94498a0038
29 changed files with 349 additions and 518 deletions

View File

@ -14,6 +14,7 @@
./openssh.nix
./podman.nix
./sops.nix
./xserver.nix
]
++ [
inputs.home-manager.nixosModules.home-manager

View File

@ -13,4 +13,12 @@
LC_TELEPHONE = "de_DE.UTF-8";
LC_TIME = "de_DE.UTF-8";
};
# Keymap
services.xserver.xkb = {
layout = "de";
variant = "";
};
# Configure console keymap
console.keyMap = "de";
}

View File

@ -0,0 +1,6 @@
{
services.xserver = {
enable = true;
wacom.enable = true;
};
}