nix refactor

This commit is contained in:
2022-11-25 11:30:22 -05:00
parent 6d3b323ab1
commit eeefab3584
21 changed files with 420 additions and 186 deletions

14
powerline/default.nix Normal file
View File

@@ -0,0 +1,14 @@
{ config, pkgs, ... }:
{
programs.powerline-go = {
enable = true;
modules = [
"host"
"cwd"
"git"
"docker"
"venv"
];
};
}