order/inscriptions/tori.nix

45 lines
707 B
Nix
Raw Normal View History

2025-01-14 13:21:22 -05:00
{ pkgs, ... }:
{
users = {
defaultUserShell = pkgs.fish;
users.tori = {
isNormalUser = true;
description = "tori";
extraGroups = [ "networkmanager" "wheel" ];
shell = pkgs.fish;
packages = with pkgs; [
# programs
arandr
alacritty
feh
fish
gh
gh-copilot
gimp
git
jetbrains.clion
jetbrains.goland
lazygit
nil
obs-studio
scrot
technorino
unzip
vesktop
xclip
zathura
# c
cmake
gcc
valgrind
# haskell
ghc
haskell-language-server
];
};
};
}