yazi.nix
1 { config, lib, ... }: 2 let 3 inherit (lib) enabled; 4 in 5 { 6 home-manager.sharedModules = [ 7 { 8 programs.yazi = enabled { 9 # Remove the theme line that was causing the error 10 # theme = config.theme.yaziTheme; # This doesn't exist in ThemeNix! 11 12 # For now, just enable yazi without theming, or add manual theme later 13 }; 14 } 15 ]; 16 }