This repository has been archived on 2024-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles/env/nix/modules/users/daniel.nix

41 lines
614 B
Nix

{ config, pkgs, ... }: {
users.users.daniel = {
isNormalUser = true;
extraGroups = [ "wheel" "docker" ];
shell = pkgs.fish;
home = "/home/daniel/.home";
packages = with pkgs; [
fortune
steam
pulsemixer
file
appimage-run
kitty
fzf
fortune
dmenu
ranger
pass
brightnessctl
vulkan-tools # TODO: vulkan?
rustup
clang
pavucontrol
pamixer
strongswan
gnumake
elixir
postgresql
htop
google-cloud-sdk
unzip
automake
autoconf
ncurses
weechat
jq
xfce.thunar xfce.thunar-archive-plugin # xfce.thunar-volman
];
};
}