cleanup nvim merge and general janitorial work
This commit is contained in:
parent
c544159576
commit
db330b546d
30 changed files with 254 additions and 1300 deletions
|
|
@ -4,6 +4,7 @@
|
|||
./tmux.nix
|
||||
./git.nix
|
||||
./fish
|
||||
./pi
|
||||
];
|
||||
home = {
|
||||
packages = with pkgs; [
|
||||
|
|
@ -12,7 +13,7 @@
|
|||
ripgrep
|
||||
fd
|
||||
jq
|
||||
nvim-pkg
|
||||
nvim
|
||||
];
|
||||
};
|
||||
programs.bash = {
|
||||
|
|
|
|||
0
home-manager/shared/programs/shell/pi/config/agent/test
Normal file
0
home-manager/shared/programs/shell/pi/config/agent/test
Normal file
0
home-manager/shared/programs/shell/pi/config/test
Normal file
0
home-manager/shared/programs/shell/pi/config/test
Normal file
31
home-manager/shared/programs/shell/pi/default.nix
Normal file
31
home-manager/shared/programs/shell/pi/default.nix
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
{
|
||||
inputs,
|
||||
config,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
{
|
||||
imports = [ inputs.sops-nix.homeManagerModules.sops ];
|
||||
|
||||
sops = {
|
||||
age.keyFile = "/home/e/.config/sops/age/keys.txt";
|
||||
secrets = {
|
||||
"pi.json" = {
|
||||
key = "";
|
||||
format = "json";
|
||||
sopsFile = ../../../../../secrets/pi.json;
|
||||
path = "${config.home.homeDirectory}/.pi/agent/auth.json";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
home.packages = with pkgs; [
|
||||
llm-agents.pi
|
||||
];
|
||||
|
||||
home.file.".pi" = {
|
||||
source = ./config;
|
||||
recursive = true;
|
||||
};
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue