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

13 lines
207 B
Nix
Raw Normal View History

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