mirror of
https://github.com/buckley310/nixos-config.git
synced 2024-11-09 18:47:02 +00:00
powerline: add extraArgs option
This commit is contained in:
parent
fa5fd32125
commit
6b55424e78
1 changed files with 5 additions and 1 deletions
|
@ -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 = [ ];
|
||||
};
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue