2025-01-21 14:42:56 -05:00
|
|
|
{
|
|
|
|
self ? {},
|
|
|
|
description ? false,
|
|
|
|
}: let
|
|
|
|
module = mod: desc:
|
|
|
|
if description
|
|
|
|
then desc
|
|
|
|
else mod;
|
|
|
|
in {
|
|
|
|
firefox =
|
|
|
|
module
|
|
|
|
(import ./firefox self)
|
|
|
|
''
|
|
|
|
Uses the home-manager firefox module to declare my custom configuration
|
|
|
|
which includes my list of extensions, my adapted [firefox-gx](https://github.com/Godiesc/firefox-gx)
|
|
|
|
theme and other settings.
|
|
|
|
'';
|
|
|
|
|
|
|
|
neovim =
|
|
|
|
module
|
|
|
|
(import ./neovim self)
|
|
|
|
''
|
|
|
|
Uses the home-manager neovim module to declare my custom configuration
|
|
|
|
and expands it with toggles for certain LSPs. This configuration loads
|
|
|
|
corresponding devShells of the current language from `self.devShells`
|
|
|
|
dynamically to support various LSPs.
|
|
|
|
'';
|
|
|
|
|
|
|
|
shell =
|
|
|
|
module
|
|
|
|
(import ./shell self)
|
|
|
|
''
|
|
|
|
Extends the bash home-manager options to set some bash options, aliases
|
|
|
|
themes that follow Dracula Theme and settings for CLI programs, such as
|
|
|
|
starship, trash-d, nix-comma, nix-direnv, git, etc.
|
|
|
|
'';
|
2024-08-02 22:32:29 -04:00
|
|
|
}
|