mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 16:57:55 +00:00
31 lines
620 B
Nix
31 lines
620 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
let
|
|
userCfg = config.users.foo-dogsquared;
|
|
cfg = userCfg.programs.nixvim;
|
|
hmCfg = config;
|
|
in
|
|
{
|
|
options.users.foo-dogsquared.programs.nixvim.enable =
|
|
lib.mkEnableOption "NixVim setup";
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
programs.nixvim = { ... }: {
|
|
imports =
|
|
[
|
|
./colorschemes.nix
|
|
./note-taking.nix
|
|
]
|
|
++ lib.optionals userCfg.setups.development.enable [
|
|
./dev.nix
|
|
./lsp.nix
|
|
./dap.nix
|
|
];
|
|
config = {
|
|
enable = true;
|
|
inherit (hmCfg) tinted-theming;
|
|
};
|
|
};
|
|
};
|
|
}
|