nixos-configs/homeManagerModules/default.nix

38 lines
1,019 B
Nix
Raw Normal View History

{
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.
'';
}