update and fix bits
This commit is contained in:
parent
22e8556a47
commit
d3649cf6e2
5 changed files with 28 additions and 23 deletions
|
|
@ -157,6 +157,7 @@ in
|
|||
programs.ssh.matchBlocks = {
|
||||
"git.tristans.cloud" = {
|
||||
user = "git";
|
||||
hostname = "100.116.82.65";
|
||||
port = 2222;
|
||||
};
|
||||
"alpine" = {
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
# https://search.nixos.org/options
|
||||
|
||||
user: { config, pkgs, ... }:
|
||||
user: { config, pkgs, lib, ... }:
|
||||
{
|
||||
|
||||
home-manager.users.${user}.imports = [
|
||||
|
|
@ -68,10 +68,10 @@ user: { config, pkgs, ... }:
|
|||
};
|
||||
};
|
||||
|
||||
i18n.defaultLocale = "en_GB.UTF-8";
|
||||
i18n.defaultLocale = lib.mkDefault "en_GB.UTF-8";
|
||||
|
||||
services.xserver = {
|
||||
layout = "gb";
|
||||
layout = lib.mkDefault "gb";
|
||||
xkbOptions = "caps:escape";
|
||||
# extraLayouts = {
|
||||
# mine = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue