Move packages to packages.nix

This commit is contained in:
Leonora Tindall 2024-02-05 10:52:34 -06:00
parent 52d34d7425
commit a2473d5d3f
2 changed files with 13 additions and 10 deletions

View File

@ -6,16 +6,7 @@ in
./vim.nix
./git.nix
./zsh.nix
];
home.packages = with pkgs; [
htop
wget
ripgrep
bat
fd
neofetch
dfc
./packages.nix
];
# Home Manager is pretty good at managing dotfiles. The primary way to manage

12
packages.nix Normal file
View File

@ -0,0 +1,12 @@
{ config, pkgs, ... }:
{
home.packages = with pkgs; [
htop
wget
ripgrep
bat
fd
neofetch
dfc
];
}