38 lines
1.1 KiB
Nix
38 lines
1.1 KiB
Nix
# **************************************************************************** #
|
|
# #
|
|
# ::: :::::::: #
|
|
# packages.nix :+: :+: :+: #
|
|
# +:+ +:+ +:+ #
|
|
# By: tomoron <tomoron@student.42angouleme.fr> +#+ +:+ +#+ #
|
|
# +#+#+#+#+#+ +#+ #
|
|
# Created: 2025/02/09 22:01:56 by tomoron #+# #+# #
|
|
# Updated: 2025/02/10 05:08:00 by tomoron ### ########.fr #
|
|
# #
|
|
# **************************************************************************** #
|
|
|
|
{ pkgs, ...}:
|
|
|
|
{
|
|
home.packages = with pkgs;[
|
|
neovim
|
|
ripgrep
|
|
|
|
activate-linux
|
|
unison
|
|
discord
|
|
google-chrome
|
|
brightnessctl
|
|
playerctl
|
|
python3
|
|
vlc
|
|
nerd-fonts.iosevka
|
|
moonlight-qt
|
|
|
|
nix-index
|
|
yubikey-manager
|
|
yubico-pam
|
|
dunst
|
|
bibata-cursors
|
|
];
|
|
}
|