relocate template boilerplate

This commit is contained in:
Zynh Ludwig 2025-01-09 17:33:26 -08:00
parent 4364e14de8
commit 3ddffba5e0
3 changed files with 9 additions and 12 deletions

View file

@ -1,10 +1,6 @@
{ {
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
# Set your time zone.
time.timeZone = "America/Los_Angeles"; time.timeZone = "America/Los_Angeles";
# Select internationalisation properties.
i18n.defaultLocale = "en_US.UTF-8"; i18n.defaultLocale = "en_US.UTF-8";
i18n.extraLocaleSettings = { i18n.extraLocaleSettings = {
@ -18,12 +14,4 @@
LC_TELEPHONE = "en_US.UTF-8"; LC_TELEPHONE = "en_US.UTF-8";
LC_TIME = "en_US.UTF-8"; LC_TIME = "en_US.UTF-8";
}; };
# Configure keymap in X11
services.xserver.xkb = {
layout = "us";
variant = "";
};
services.openssh.enable = true;
} }

3
modules/ssh.nix Normal file
View file

@ -0,0 +1,3 @@
{
services.openssh.enable = true;
}

6
modules/xkb.nix Normal file
View file

@ -0,0 +1,6 @@
{
services.xserver.xkb = {
layout = "us";
variant = "";
};
}