snowflake/home/default.nix

19 lines
188 B
Nix
Raw Normal View History

{
default,
2023-03-19 19:31:25 -04:00
pkgs,
...
}: {
imports = [
2023-03-19 15:10:30 -04:00
./neofetch
./nushell
./starship
./helix
./git
./lazygit
];
2023-03-19 19:31:25 -04:00
home.packages = with pkgs; [
bat
zoxide
];
}