snowflake/home/default.nix

19 lines
211 B
Nix
Raw Normal View History

2023-04-23 17:45:37 -04:00
{pkgs, ...}: {
imports = [
2023-03-19 15:10:30 -04:00
./neofetch
./nushell
./starship
./helix
./git
./lazygit
2023-04-05 15:54:00 -04:00
./zoxide
2023-04-14 23:19:31 -04:00
./direnv
];
2023-03-19 19:31:25 -04:00
home.packages = with pkgs; [
bat
2023-03-31 18:28:25 -04:00
croc
2023-05-12 02:07:29 -04:00
lazydocker
2023-03-19 19:31:25 -04:00
];
2023-04-23 17:45:37 -04:00
}