nixos/home-manager/packages/packages.nix

21 lines
220 B
Nix
Raw Normal View History

2024-07-24 19:51:43 -04:00
{ pkgs, ... }:
{
imports =
[
./zsh.nix
./git.nix
];
home.packages = with pkgs; [
rustup
hyfetch
nix-output-monitor
alvr
firefox
tree
vesktop
kitty
];
}