feat: add a comfortable Zsh terminal and system diagnostics

This commit is contained in:
Coding Agent
2026-09-05 05:02:51 +00:00
parent 2868b5ab85
commit 366d19a6b5
6 changed files with 292 additions and 9 deletions
+3
View File
@@ -1,8 +1,11 @@
{ pkgs, ... }:
{
users.users.dev = {
isNormalUser = true;
uid = 1001;
description = "Development user";
shell = pkgs.zsh;
extraGroups = [ "wheel" ];
openssh.authorizedKeys.keyFiles = [ ./dev-authorized-keys ];
};