Files
Nixos-Config/modules/system/user.nix
2026-04-20 15:26:01 +00:00

23 lines
558 B
Nix

# ==========================================
# USER CONFIGURATION
# ==========================================
{ config, pkgs, ... }:
{
users.users.matiss = {
isNormalUser = true;
description = "Matiss";
extraGroups = [ "networkmanager" "wheel" "docker" "video" "render" "input" ];
shell = pkgs.zsh;
hashedPassword = "$y$j9T$VCKe6/ZXyDtGgCjivz0L2/$EnTSVNqG.lF6V0YtCZSBa8rRLjXNw9WYYt8AjKqANzA";
};
# Core system packages (available to all users)
environment.systemPackages = with pkgs; [
git
vim
wget
curl
];
}