nixos/home-manager/packages/packages.nix

23 lines
257 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-24 19:51:43 -04:00
];
home.packages = with pkgs; [
rustup
hyfetch
nix-output-monitor
alvr
firefox
tree
vesktop
kitty
2024-07-25 13:08:25 -04:00
prismlauncher
2024-07-24 19:51:43 -04:00
];
}