alpha
Login
or
Join now
duskyelf.com
/
NixBTW
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
My NixOS configuration and dotfiles
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
feat: pi config
author
DuskyElf
date
3 months ago
(Apr 22, 2026, 3:10 PM +0530)
commit
e7dae76b
e7dae76b102dc11d0e2618fc2ffb76ccd489506b
parent
e7aaf4eb
e7aaf4eb5e74afe460cf0566d13de26a30568985
+7
2 changed files
Expand all
Collapse all
Unified
Split
.gitmodules
cli
pi-coding-agent.nix
+3
.gitmodules
View file
Reviewed
···
4
4
[submodule "opencodeBTW"]
5
5
path = opencodeBTW
6
6
url = https://github.com/DuskyElf/opencodeBTW
7
7
+
[submodule "piBTW"]
8
8
+
path = piBTW
9
9
+
url = https://github.com/DuskyElf/piBTW
+4
cli/pi-coding-agent.nix
View file
Reviewed
···
1
1
{
2
2
+
config,
2
3
pkgs-unstable,
3
4
...
4
5
}:
···
6
7
home.packages = [
7
8
pkgs-unstable.pi-coding-agent
8
9
];
10
10
+
11
11
+
home.file.".pi".source =
12
12
+
config.lib.file.mkOutOfStoreSymlink "${config.home.homeDirectory}/dotfiles/piBTW";
9
13
}