Flatten modules
This commit is contained in:
parent
ab5ae74dda
commit
d1a58fec56
86 changed files with 64 additions and 50 deletions
|
@ -10,7 +10,7 @@
|
|||
neovim = inputs'.nixvim.legacyPackages.makeNixvimWithModule {
|
||||
inherit pkgs;
|
||||
|
||||
module = import "${self}/modules/home-manager/coding/neovim/config";
|
||||
module = import "${self}/modules/home-manager/neovim/config";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
|
@ -118,6 +118,24 @@ in
|
|||
privateDefault = "ddg";
|
||||
};
|
||||
|
||||
search.engines = {
|
||||
# TODO: Drupal.org users.
|
||||
# TODO: Mastodon.
|
||||
# TODO: GitHub.
|
||||
# TODO: Forgejo.
|
||||
drupal_projects = {
|
||||
name = "Drupal.org projects";
|
||||
urls = [ { template = "https://www.drupal.org/project/{searchTerms}"; } ];
|
||||
definedAliases = [ "@dp" ];
|
||||
};
|
||||
|
||||
nixvim = {
|
||||
name = "Nixvim options search";
|
||||
urls = [ { template = "https://nix-community.github.io/nixvim/search/?query={searchTerms}"; } ];
|
||||
definedAliases = [ "@nxv" ];
|
||||
};
|
||||
};
|
||||
|
||||
settings = {
|
||||
"browser.search.isUS" = false;
|
||||
"browser.search.region" = "GB";
|
|
@ -1,31 +1,31 @@
|
|||
{
|
||||
imports = [
|
||||
./cli/bluetuith.nix
|
||||
./cli/bookmarkthis.nix
|
||||
./cli/dev-commit.nix
|
||||
./cli/direnv.nix
|
||||
./cli/fzf.nix
|
||||
./cli/git.nix
|
||||
./cli/node.nix
|
||||
./cli/notes.nix
|
||||
./cli/ranger.nix
|
||||
./cli/starship.nix
|
||||
./cli/sxhkd.nix
|
||||
./cli/tmux-sessionizer.nix
|
||||
./cli/tmux.nix
|
||||
./cli/zsh
|
||||
./coding/neovim
|
||||
./coding/phpactor
|
||||
./core/gnupg.nix
|
||||
./desktop/browsers/chromium.nix
|
||||
./desktop/browsers/firefox.nix
|
||||
./desktop/browsers/qutebrowser.nix
|
||||
./desktop/flameshot.nix
|
||||
./desktop/gtk.nix
|
||||
./desktop/media/handbrake.nix
|
||||
./desktop/media/makemkv.nix
|
||||
./desktop/media/mpv.nix
|
||||
./desktop/redshift.nix
|
||||
./desktop/screenkey.nix
|
||||
./bluetuith.nix
|
||||
./bookmarkthis.nix
|
||||
./browsers/chromium.nix
|
||||
./browsers/firefox.nix
|
||||
./browsers/qutebrowser.nix
|
||||
./dev-commit.nix
|
||||
./direnv.nix
|
||||
./flameshot.nix
|
||||
./fzf.nix
|
||||
./git.nix
|
||||
./gnupg.nix
|
||||
./gtk.nix
|
||||
./media/handbrake.nix
|
||||
./media/makemkv.nix
|
||||
./media/mpv.nix
|
||||
./neovim
|
||||
./node.nix
|
||||
./notes.nix
|
||||
./phpactor
|
||||
./ranger.nix
|
||||
./redshift.nix
|
||||
./screenkey.nix
|
||||
./starship.nix
|
||||
./sxhkd.nix
|
||||
./tmux-sessionizer.nix
|
||||
./tmux.nix
|
||||
./zsh
|
||||
];
|
||||
}
|
||||
|
|
|
@ -1,28 +1,24 @@
|
|||
{
|
||||
imports = [
|
||||
./cli/docker.nix
|
||||
./cli/kanata.nix
|
||||
./cli/podman.nix
|
||||
./cli/password-store.nix
|
||||
|
||||
./core/avahi.nix
|
||||
./core/bluetooth.nix
|
||||
./core/gnupg.nix
|
||||
./core/openssh.nix
|
||||
./core/pipewire.nix
|
||||
./core/xbanish.nix
|
||||
./core/zram.nix
|
||||
|
||||
./desktop/dconf.nix
|
||||
./desktop/dwm
|
||||
./desktop/fonts.nix
|
||||
./desktop/media
|
||||
./desktop/st.nix
|
||||
./desktop/thunar.nix
|
||||
|
||||
./homelab/gitea-actions-runner.nix
|
||||
|
||||
./avahi.nix
|
||||
./bluetooth.nix
|
||||
./dconf.nix
|
||||
./docker.nix
|
||||
./dwm
|
||||
./fonts.nix
|
||||
./gitea-actions-runner.nix
|
||||
./gnupg.nix
|
||||
./kanata.nix
|
||||
./media
|
||||
./nix-index.nix
|
||||
./nixpad
|
||||
./openssh.nix
|
||||
./password-store.nix
|
||||
./pipewire.nix
|
||||
./podman.nix
|
||||
./st.nix
|
||||
./thunar.nix
|
||||
./xbanish.nix
|
||||
./zram.nix
|
||||
];
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue