nichts/hosts/vali/desktop/default.nix

17 lines
341 B
Nix
Raw Normal View History

2024-04-10 11:35:09 +02:00
{ inputs, outputs, pks, lib, profile-config, ... }:
{
imports = [
../../../modules/vali/default.nix
2024-04-10 11:56:34 +02:00
../../common
2024-04-10 11:35:09 +02:00
./hardware-configuration.nix
./packages.nix
./boot.nix
];
2024-04-10 11:56:34 +02:00
i3wm.enable = true;
2024-04-10 11:35:09 +02:00
security.polkit.enable = true;
# Set the keyboard layout to DE
2024-04-10 13:49:42 +02:00
services.xserver.xkb.layout = "de";
2024-04-10 11:35:09 +02:00
console.keyMap = "de";
}