14 lines
268 B
Nix
Raw Normal View History

2025-03-23 20:01:51 +01:00
{lib, ...}: {
imports = [
./neovim.nix
./shell.nix
./tmux.nix
./zsh.nix
];
crony.neovim.enable = lib.mkDefault true;
crony.shell.enable = lib.mkDefault true;
crony.tmux.enable = lib.mkDefault true;
crony.zsh.enable = lib.mkDefault true;
}