mirror of
https://github.com/nmasur/dotfiles
synced 2025-07-06 13:10:14 +00:00
fix warnings for flame
This commit is contained in:
@ -10,7 +10,7 @@ let
|
||||
in
|
||||
{
|
||||
|
||||
options.nmasur.preset.programs.notes = {
|
||||
options.nmasur.presets.programs.notes = {
|
||||
enable = lib.mkEnableOption "Manage notes repository";
|
||||
repo = lib.mkOption {
|
||||
type = lib.types.nullOr lib.types.str;
|
||||
|
@ -13,14 +13,19 @@ in
|
||||
|
||||
options.nmasur.presets.programs.ripgrep = {
|
||||
enable = lib.mkEnableOption "Ripgrep search tool";
|
||||
ignorePatterns = ''
|
||||
!.env*
|
||||
!.github/
|
||||
!.gitignore
|
||||
!*.tfvars
|
||||
.terraform/
|
||||
.target/
|
||||
/Library/'';
|
||||
ignorePatterns = lib.mkOption {
|
||||
type = lib.types.lines;
|
||||
description = "Patterns to ignore with ripgrep";
|
||||
default = ''
|
||||
!.env*
|
||||
!.github/
|
||||
!.gitignore
|
||||
!*.tfvars
|
||||
.terraform/
|
||||
.target/
|
||||
/Library/
|
||||
'';
|
||||
};
|
||||
};
|
||||
|
||||
config = lib.mkIf cfg.enable {
|
||||
|
@ -11,7 +11,7 @@
|
||||
colors = lib.mkOption {
|
||||
type = lib.types.attrs;
|
||||
description = "Base16 color scheme.";
|
||||
default = (import ../colorscheme/gruvbox).dark;
|
||||
default = (import ../../colorscheme/gruvbox).dark;
|
||||
};
|
||||
mode = lib.mkOption {
|
||||
type = lib.types.enum [
|
||||
|
Reference in New Issue
Block a user