options is a taken var name

This commit is contained in:
2025-01-16 14:40:22 -06:00
parent 1f6f0e87a0
commit a3b02c4d06
2 changed files with 8 additions and 8 deletions

View File

@@ -1,4 +1,4 @@
{ pkgs, options, ... }: {
{ pkgs, opts, ... }: {
# Import all your configuration modules here
imports = [ ./bufferline.nix ];
@@ -185,5 +185,5 @@
];
colorscheme = if options.pywal then "pywal" else "tokyonight-storm";
colorscheme = if opts.pywal then "pywal" else "tokyonight-storm";
}