{ config, pkgs, ... }: # User configuration { users = { defaultUserShell = pkgs.zsh; users.aethrvmn = { isNormalUser = true; extraGroups = [ "audio" "networkmanager" "video" "wheel" ]; password = "gg"; openssh.authorizedKeys.keys = [ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIF3R0qrWQ9omz87lt4YRCdI+QV55KxMqxU+Vz1mUM4ye me@aethrvmn.gr" ]; }; }; programs = { zsh.enable = true; fish.enable = true; }; }