Oliver Davies
73d801d7ac
https://github.com/nickjj/notes https://nickjanetakis.com/blog/organize-your-text-based-notes-from-the-command-line-with-this-script
49 lines
584 B
Nix
49 lines
584 B
Nix
{
|
|
config,
|
|
inputs,
|
|
lib,
|
|
pkgs,
|
|
self,
|
|
...
|
|
}:
|
|
|
|
{
|
|
imports = [
|
|
(import ./neovim.nix {
|
|
inherit
|
|
config
|
|
inputs
|
|
lib
|
|
pkgs
|
|
self
|
|
;
|
|
})
|
|
|
|
(import ./tmux-sessionizer.nix {
|
|
inherit
|
|
config
|
|
lib
|
|
pkgs
|
|
self
|
|
;
|
|
})
|
|
|
|
./bat.nix
|
|
./bin.nix
|
|
./bluetuith.nix
|
|
./direnv.nix
|
|
./fzf.nix
|
|
./git.nix
|
|
./htop.nix
|
|
./lsd.nix
|
|
./notes.nix
|
|
./pet.nix
|
|
./phpactor.nix
|
|
./ripgrep.nix
|
|
./starship.nix
|
|
./syncthing.nix
|
|
./tmux.nix
|
|
./zsh.nix
|
|
];
|
|
}
|