summaryrefslogtreecommitdiffstats
path: root/nixos/tests/systemd-localed.nix
blob: 308d90122868022b4977b847b015b77fa120dfc3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ lib, ... }:
{
  name = "systemd-localed";
  meta.maintainers = [ lib.maintainers.haansn08 ];

  nodes.machine = { ... }: {
    # we don't use services.xserver.enable because some window managers like
    # niri rely on systemd-localed for the keyboard layout:
    # https://niri-wm.github.io/niri/Configuration%3A-Input.html#layout
    services.graphical-desktop.enable = true;

    services.xserver.xkb.layout = "jp";
  };

  testScript = ''
    machine.start()
    machine.wait_for_unit("default.target")
    machine.wait_for_unit("dbus.socket")

    status, stdout = machine.execute("localectl")
    t.assertIn("X11 Layout: jp", stdout)
  '';
}