add nixos & move home-manager config

This commit is contained in:
2025-01-24 19:53:44 -05:00
parent 901cc03d80
commit bb8e2171ce
44 changed files with 406 additions and 25 deletions

View File

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