Move packages to packages.nix
This commit is contained in:
parent
52d34d7425
commit
a2473d5d3f
11
home.nix
11
home.nix
|
@ -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
|
||||
|
|
|
@ -0,0 +1,12 @@
|
|||
{ config, pkgs, ... }:
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
htop
|
||||
wget
|
||||
ripgrep
|
||||
bat
|
||||
fd
|
||||
neofetch
|
||||
dfc
|
||||
];
|
||||
}
|
Loading…
Reference in New Issue