nix/home-manager/common/software/cli/default.nix

13 lines
207 B
Nix
Raw Normal View History

2023-08-31 20:55:14 +09:00
{ theme, hostname, ... }: {
imports = [
./bash.nix
2023-12-12 21:29:40 +09:00
# ./doom-emacs.nix
2023-08-31 20:55:14 +09:00
./git.nix
./neofetch.nix
./neovim.nix
./ranger.nix
2023-12-01 11:13:39 +09:00
./ssh.nix
2023-08-31 20:55:14 +09:00
2023-09-15 12:03:35 +09:00
./themes/${theme}/btop.nix
2023-08-31 20:55:14 +09:00
];
}