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
|
./vim.nix
|
||||||
./git.nix
|
./git.nix
|
||||||
./zsh.nix
|
./zsh.nix
|
||||||
];
|
./packages.nix
|
||||||
|
|
||||||
home.packages = with pkgs; [
|
|
||||||
htop
|
|
||||||
wget
|
|
||||||
ripgrep
|
|
||||||
bat
|
|
||||||
fd
|
|
||||||
neofetch
|
|
||||||
dfc
|
|
||||||
];
|
];
|
||||||
|
|
||||||
# Home Manager is pretty good at managing dotfiles. The primary way to manage
|
# 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