2020-11-07 00:47:32 -06:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
let
|
|
|
|
unstable = import <nixos-unstable> { config = { allowUnfree = true; }; };
|
|
|
|
in {
|
2020-10-27 17:10:54 -05:00
|
|
|
fonts.fonts = with pkgs; [
|
|
|
|
# helvetica # needed by zoom
|
|
|
|
];
|
2020-10-26 23:45:27 -05:00
|
|
|
users.users.daniel = {
|
|
|
|
isNormalUser = true;
|
|
|
|
extraGroups = [ "wheel" "docker" ];
|
|
|
|
shell = pkgs.fish;
|
2020-10-24 10:03:34 -05:00
|
|
|
home = "/home/daniel/.home";
|
|
|
|
packages = with pkgs; [
|
2020-10-26 17:38:07 -05:00
|
|
|
fortune # fun sayings
|
|
|
|
steam # games
|
|
|
|
pulsemixer # audio
|
|
|
|
file # identify file types
|
|
|
|
kitty # terminal emulator
|
2020-11-07 00:47:32 -06:00
|
|
|
unstable.fzf # fuzzy finder
|
2020-10-26 17:38:07 -05:00
|
|
|
dmenu # TODO: currently only using this for dmenu_path in `bin/launch`
|
|
|
|
ranger # tui for file management
|
|
|
|
pass # the standard unix password manager
|
|
|
|
vulkan-tools # vkcube for making sure vulkan still works
|
2020-10-24 10:03:34 -05:00
|
|
|
rustup
|
|
|
|
clang
|
2020-10-26 17:38:07 -05:00
|
|
|
pavucontrol # gui pulseaudio manager
|
|
|
|
pamixer # tui pulseaudio manager
|
|
|
|
strongswan # work vpn
|
2020-10-24 10:03:34 -05:00
|
|
|
gnumake
|
|
|
|
elixir
|
2020-10-26 17:38:07 -05:00
|
|
|
postgresql # database
|
|
|
|
htop # almost as good as bottom (btm)
|
|
|
|
unzip # needed by a handful of other utilities
|
|
|
|
autoconf automake # autotools
|
|
|
|
weechat # irc
|
|
|
|
python39Full # python 3.9
|
|
|
|
jq # awk for json
|
|
|
|
xfce.thunar xfce.thunar-archive-plugin xfce.thunar-volman # gui file manager
|
2020-10-27 17:10:54 -05:00
|
|
|
mpd # music player daemon
|
|
|
|
ncmpcpp # ncurses music player client
|
|
|
|
vlc # video player
|
2020-11-06 22:12:56 -06:00
|
|
|
google-chrome # sometimes ya gotta screenshare
|
2020-10-27 17:10:54 -05:00
|
|
|
|
|
|
|
# TODO: work module?
|
|
|
|
google-cloud-sdk # gcloud
|
|
|
|
kubectl # kubernetes cli
|
|
|
|
awscli # aws cli
|
2020-11-06 22:12:56 -06:00
|
|
|
zoom-us # video conferencing
|
2020-10-27 17:10:54 -05:00
|
|
|
lastpass-cli
|
2020-10-26 17:38:07 -05:00
|
|
|
|
|
|
|
# TODO: move this one to just laptop?
|
|
|
|
brightnessctl # laptop screen brightness
|
|
|
|
|
|
|
|
# nix utils
|
|
|
|
nox # package querying and installation?
|
|
|
|
# yay is to pacman, nox is to nix-env
|
|
|
|
niv # dependency pinning?
|
|
|
|
lorri # project envrc - like asdf-vm?
|
2020-10-24 10:03:34 -05:00
|
|
|
];
|
2020-10-26 23:45:27 -05:00
|
|
|
};
|
2020-10-24 10:03:34 -05:00
|
|
|
}
|