15 lines
168 B
Nix
15 lines
168 B
Nix
|
{ config, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
programs.powerline-go = {
|
||
|
enable = true;
|
||
|
modules = [
|
||
|
"host"
|
||
|
"cwd"
|
||
|
"git"
|
||
|
"docker"
|
||
|
"venv"
|
||
|
];
|
||
|
};
|
||
|
}
|