nixos/home-manager/packages/packages.nix

25 lines
285 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-24 19:51:43 -04:00
];
}