.dotfiles/.config/home-manager/common.nix

68 lines
2 KiB
Nix
Raw Permalink Normal View History

2022-12-22 14:05:43 +00:00
{ config, pkgs, ... }:
{
2023-07-15 11:54:52 +00:00
# Packages that should be installed to the user profile.
home.packages = with pkgs; [
2023-12-12 17:24:59 +00:00
asciinema # tool to record terminal sessions
2024-02-27 17:44:29 +00:00
atuin # tool to save shell history
2023-07-15 11:54:52 +00:00
bat # cat-alternative
2024-02-20 02:56:06 +00:00
cachix # tool to manage nix binary caches
difftastic # tool to compare files
2023-07-15 11:54:52 +00:00
direnv # tool to load custom environments
docker-credential-helpers
doggo # dns client
2024-02-27 17:44:29 +00:00
du-dust # du alternative
eza # ls-alternative
2023-07-15 11:54:52 +00:00
faas-cli # cli for openfaas
2024-09-13 13:37:17 +00:00
figlet # tool to create ascii art
2023-07-15 11:54:52 +00:00
fzf # fuzzy finder
git # git
gitflow # tool for git workflow
git-lfs # git support for large files
2024-05-12 16:38:33 +00:00
haste-client # tool to paste files
2023-12-16 02:58:02 +00:00
hostname # tool to get hostname
2023-07-15 11:54:52 +00:00
jq # tool for json
moar # moar is less
nix-direnv # allow better nix and direnv integration
libnotify # allows sending notifications
lsof # who uses that drive/directory
openssh # ssh client and server
pass # password-store
pre-commit # tool for git pre-commit hooks
2023-07-15 11:54:52 +00:00
p7zip # tool to extract 7z archives
rclone # tool for remote storages
restic # backup tool
ripgrep # grep-alternative
rmtrash # rm wrapper to use trash
shellcheck # tool for shell-syntax
2023-10-19 00:20:28 +00:00
starship # shell prompt
2023-07-15 11:54:52 +00:00
tokei # project-language statistics
trash-cli # trash utils
unzip # unzip
vim # vim
2023-07-15 11:54:52 +00:00
xdg-user-dirs # tool manage user directories
2023-10-18 23:12:01 +00:00
yadm # dotfile manager
2023-07-15 11:54:52 +00:00
yq # tool for YAML
yt-dlp # tool to download videos from the internet
2024-06-24 13:25:15 +00:00
zellij # terminal multiplexer
2023-07-15 11:54:52 +00:00
zip # zip
];
2022-12-22 14:05:43 +00:00
2023-07-15 11:54:52 +00:00
# This value determines the Home Manager release that your
# configuration is compatible with. This helps avoid breakage
# when a new Home Manager release introduces backwards
# incompatible changes.
#
# You can update Home Manager without changing this value. See
# the Home Manager release notes for a list of state version
# changes in each release.
home.stateVersion = "23.05";
2022-12-22 14:05:43 +00:00
2023-07-15 11:54:52 +00:00
# Let Home Manager install and manage itself.
programs.home-manager.enable = true;
2022-12-22 14:05:43 +00:00
2023-07-15 11:54:52 +00:00
targets.genericLinux.enable = true;
2023-07-15 11:54:52 +00:00
nixpkgs.config.allowUnfree = true;
2022-12-22 14:05:43 +00:00
}