fix warnings for flame

This commit is contained in:
Noah Masur
2025-02-18 17:44:39 -05:00
parent 1d4ad5b0af
commit 7007567207
18 changed files with 94 additions and 75 deletions

View File

@ -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;

View File

@ -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 {

View File

@ -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 [