powerline: add extraArgs option

This commit is contained in:
Sean Buckley 2021-10-12 14:06:32 -04:00
parent fa5fd32125
commit 6b55424e78

View file

@ -27,7 +27,11 @@ in
"-theme ${theme}"
"-path-aliases '~/git=~/git'"
"-jobs $(jobs -p | wc -l)"
];
] ++ config.sconfig.powerline.extraArgs;
};
extraArgs = lib.mkOption {
type = lib.types.listOf lib.types.str;
default = [ ];
};
};