22 lines
303 B
Nix
22 lines
303 B
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
{
|
|
wayland.windowManager.sway.config = {
|
|
output = {
|
|
"eDP-1" = {
|
|
pos = "0 0";
|
|
scale = "1";
|
|
};
|
|
};
|
|
|
|
input = {
|
|
"type:keyboard" = {
|
|
xkb_layout = "de";
|
|
};
|
|
"*" = {
|
|
xkb_layout = "de";
|
|
};
|
|
};
|
|
};
|
|
}
|