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

22 lines
460 B
Nix

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