21 lines
189 B
Nix
21 lines
189 B
Nix
|
{
|
||
|
pkgs,
|
||
|
...
|
||
|
}: {
|
||
|
imports = [
|
||
|
./git
|
||
|
./neofetch
|
||
|
./starship
|
||
|
./zsh
|
||
|
./helix
|
||
|
];
|
||
|
|
||
|
home.packages = with pkgs; [
|
||
|
sudo
|
||
|
ripgrep
|
||
|
|
||
|
bat
|
||
|
croc
|
||
|
socat
|
||
|
];
|
||
|
}
|