44 lines
683 B
Nix
44 lines
683 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; [
|
|
# 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
|
|
];
|
|
};
|
|
}
|