nixos/users.nix
2024-02-27 05:10:59 +01:00

35 lines
503 B
Nix

{ pkgs, ...}:
{
# Setup torjus user
users.users.torjus = {
isNormalUser = true;
home = "/home/torjus";
description = "Torjus";
extraGroups = [ "wheel" "networkmanager" ];
# Install some user packages
packages = with pkgs; [
# Browser
firefox
# Editors
vscode
# Python stuff
python3
ruff
poetry
# Go stuff
go
delve
gopls
# Generic stuff
tokei
ripgrep
jq
];
};
}