mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 01:33:55 -05:00
nixosModules: move x keyboard config to hosts/common.nix
This commit is contained in:
parent
c57efa7063
commit
41852c9d1f
|
@ -157,12 +157,19 @@
|
|||
};
|
||||
};
|
||||
|
||||
services.tailscale = {
|
||||
services = {
|
||||
tailscale = {
|
||||
enable = true;
|
||||
openFirewall = true;
|
||||
authKeyFile = config.age.secrets.tailscaleAuthKey.path;
|
||||
};
|
||||
|
||||
xserver.xkb = {
|
||||
layout = "us";
|
||||
variant = "altgr-intl";
|
||||
};
|
||||
};
|
||||
|
||||
system.autoUpgrade = {
|
||||
allowReboot = true;
|
||||
dates = "04:00";
|
||||
|
|
|
@ -54,12 +54,6 @@
|
|||
|
||||
xserver = {
|
||||
enable = true;
|
||||
|
||||
xkb = {
|
||||
layout = "us";
|
||||
variant = "altgr-intl";
|
||||
};
|
||||
|
||||
excludePackages = with pkgs; [xterm];
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue