nixosModules: move x keyboard config to hosts/common.nix

This commit is contained in:
Aly Raffauf 2024-07-08 00:29:15 -04:00
parent c57efa7063
commit 41852c9d1f
2 changed files with 11 additions and 10 deletions

View file

@ -157,10 +157,17 @@
}; };
}; };
services.tailscale = { services = {
enable = true; tailscale = {
openFirewall = true; enable = true;
authKeyFile = config.age.secrets.tailscaleAuthKey.path; openFirewall = true;
authKeyFile = config.age.secrets.tailscaleAuthKey.path;
};
xserver.xkb = {
layout = "us";
variant = "altgr-intl";
};
}; };
system.autoUpgrade = { system.autoUpgrade = {

View file

@ -54,12 +54,6 @@
xserver = { xserver = {
enable = true; enable = true;
xkb = {
layout = "us";
variant = "altgr-intl";
};
excludePackages = with pkgs; [xterm]; excludePackages = with pkgs; [xterm];
}; };
}; };