My NixOS configuration and dotfiles
0

Configure Feed

Select the types of activity you want to include in your feed.

feat: pi config

+7
+3
.gitmodules
··· 4 4 [submodule "opencodeBTW"] 5 5 path = opencodeBTW 6 6 url = https://github.com/DuskyElf/opencodeBTW 7 + [submodule "piBTW"] 8 + path = piBTW 9 + url = https://github.com/DuskyElf/piBTW
+4
cli/pi-coding-agent.nix
··· 1 1 { 2 + config, 2 3 pkgs-unstable, 3 4 ... 4 5 }: ··· 6 7 home.packages = [ 7 8 pkgs-unstable.pi-coding-agent 8 9 ]; 10 + 11 + home.file.".pi".source = 12 + config.lib.file.mkOutOfStoreSymlink "${config.home.homeDirectory}/dotfiles/piBTW"; 9 13 }