nixos/system/users.nix

47 lines
714 B
Nix

{ pkgs, ...}:
{
programs.zsh.enable = true;
environment.shells = with pkgs; [ zsh ];
# Setup torjus user
users.users.torjus = {
isNormalUser = true;
home = "/home/torjus";
description = "Torjus";
shell = pkgs.zsh;
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
# Hyprland stuff
rofi-wayland
swaylock
waybar
dunst
slurp
wpaperd
];
};
}