nixos/home-manager/packages/packages.nix

27 lines
322 B
Nix
Raw Normal View History

2024-07-24 19:51:43 -04:00
{ pkgs, ... }:
{
imports =
[
./zsh.nix
./git.nix
2024-07-24 21:21:29 -04:00
./emacs.nix
2024-07-26 17:39:20 -04:00
./kitty.nix
2024-07-24 19:51:43 -04:00
];
home.packages = with pkgs; [
rustup
hyfetch
nix-output-monitor
alvr
firefox
tree
vesktop
2024-07-25 13:08:25 -04:00
prismlauncher
2024-07-26 16:13:05 -04:00
fzf
zoxide
2024-07-30 23:25:18 -04:00
tor-browser
2024-08-01 18:33:11 -04:00
nix-search-cli
2024-07-24 19:51:43 -04:00
];
}