Group modules into feature directories

This commit is contained in:
Oliver Davies 2024-11-26 08:40:00 +00:00
parent 0baed7e6f6
commit 9782272a76
49 changed files with 244 additions and 83 deletions

View file

@ -0,0 +1,37 @@
{
config,
inputs,
lib,
pkgs,
...
}:
{
imports = [
# (import ./neovim.nix {
# inherit
# config
# inputs
# lib
# pkgs
# ;
# })
./bat.nix
./bin.nix
./bluetuith.nix
./direnv.nix
./fzf.nix
./git.nix
./htop.nix
./lsd.nix
./neovim.nix
./pet.nix
./phpactor.nix
./ripgrep.nix
./starship.nix
./syncthing.nix
./tmux.nix
./zsh.nix
];
}