update commonUsers and refactor system config

This commit is contained in:
steveej 2024-01-22 22:45:42 +00:00
parent a1f42a13a1
commit 3b7a80ef03
8 changed files with 131 additions and 104 deletions

View file

@ -1,9 +1,8 @@
{
config,
pkgs,
lib,
nodeName,
...
{ config
, pkgs
, lib
, nodeName
, ...
}: {
networking.hostName = builtins.elemAt (builtins.split "\\." nodeName) 0; # Define your hostname.
networking.domain = builtins.elemAt (builtins.split "(^[^\\.]+\.)" nodeName) 2;
@ -15,11 +14,11 @@
'';
# Fonts, I18N, Date ...
fonts.fonts = [pkgs.corefonts];
fonts.packages = [ pkgs.corefonts ];
console.font = "lat9w-16";
i18n = {defaultLocale = "en_US.UTF-8";};
i18n = { defaultLocale = "en_US.UTF-8"; };
time.timeZone = "Etc/UTC";
services.gpm.enable = true;
@ -52,6 +51,6 @@
programs.zsh.enable = true;
users.defaultUserShell = pkgs.zsh;
environment.pathsToLink = ["/share/zsh"];
environment.pathsToLink = [ "/share/zsh" ];
programs.fuse.userAllowOther = true;
}