aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md6
-rw-r--r--home-manager/.config/home-manager/common/default.nix2
-rw-r--r--home-manager/.config/home-manager/flake.lock24
-rw-r--r--home-manager/.config/home-manager/flake.nix3
4 files changed, 21 insertions, 14 deletions
diff --git a/README.md b/README.md
index 1c64e24..b2eaefe 100644
--- a/README.md
+++ b/README.md
@@ -2,6 +2,12 @@
stow -v -t ~ nix nixpkgs
```
+For updating a specific input only:
+```bash
+nix flake lock --update-input llm-agents
+home-manager switch
+```
+
OrbStack usage:
1. Create a debian 12 machine with the name `orb-deb` and user `kdma0` (default).
2. Specify the follwing `cloud-init.yaml`:
diff --git a/home-manager/.config/home-manager/common/default.nix b/home-manager/.config/home-manager/common/default.nix
index b0ca85b..bfd4959 100644
--- a/home-manager/.config/home-manager/common/default.nix
+++ b/home-manager/.config/home-manager/common/default.nix
@@ -44,6 +44,8 @@
uv
wget
yazi
+ ] ++ [
+ llm-agents.opencode
];
};
diff --git a/home-manager/.config/home-manager/flake.lock b/home-manager/.config/home-manager/flake.lock
index 33bd90d..368a594 100644
--- a/home-manager/.config/home-manager/flake.lock
+++ b/home-manager/.config/home-manager/flake.lock
@@ -87,11 +87,11 @@
]
},
"locked": {
- "lastModified": 1772408722,
- "narHash": "sha256-rHuJtdcOjK7rAHpHphUb1iCvgkU3GpfvicLMwwnfMT0=",
+ "lastModified": 1775087534,
+ "narHash": "sha256-91qqW8lhL7TLwgQWijoGBbiD4t7/q75KTi8NxjVmSmA=",
"owner": "hercules-ci",
"repo": "flake-parts",
- "rev": "f20dc5d9b8027381c474144ecabc9034d6a839a3",
+ "rev": "3107b77cd68437b9a76194f0f7f9c55f2329ca5b",
"type": "github"
},
"original": {
@@ -145,11 +145,11 @@
"treefmt-nix": "treefmt-nix"
},
"locked": {
- "lastModified": 1774333104,
- "narHash": "sha256-acWWrX21golBLxEQ+RxEow2MZ7KxFi8iCH1LUXUL4eg=",
+ "lastModified": 1775399974,
+ "narHash": "sha256-uCjuOi5fN6Y/AfpWv/MH65CAoLEIHOg14PSrtzXGuJs=",
"owner": "numtide",
"repo": "llm-agents.nix",
- "rev": "2935ee5defa6159e56cc31ee122f8caa3772c174",
+ "rev": "c9e352e53c5164b68dd05acf5a87d5798b6aa003",
"type": "github"
},
"original": {
@@ -160,11 +160,11 @@
},
"nixpkgs": {
"locked": {
- "lastModified": 1773840656,
- "narHash": "sha256-9tpvMGFteZnd3gRQZFlRCohVpqooygFuy9yjuyRL2C0=",
+ "lastModified": 1775126147,
+ "narHash": "sha256-J0dZU4atgcfo4QvM9D92uQ0Oe1eLTxBVXjJzdEMQpD0=",
"owner": "NixOS",
"repo": "nixpkgs",
- "rev": "9cf7092bdd603554bd8b63c216e8943cf9b12512",
+ "rev": "8d8c1fa5b412c223ffa47410867813290cdedfef",
"type": "github"
},
"original": {
@@ -221,11 +221,11 @@
]
},
"locked": {
- "lastModified": 1773297127,
- "narHash": "sha256-6E/yhXP7Oy/NbXtf1ktzmU8SdVqJQ09HC/48ebEGBpk=",
+ "lastModified": 1775125835,
+ "narHash": "sha256-2qYcPgzFhnQWchHo0SlqLHrXpux5i6ay6UHA+v2iH4U=",
"owner": "numtide",
"repo": "treefmt-nix",
- "rev": "71b125cd05fbfd78cab3e070b73544abe24c5016",
+ "rev": "75925962939880974e3ab417879daffcba36c4a3",
"type": "github"
},
"original": {
diff --git a/home-manager/.config/home-manager/flake.nix b/home-manager/.config/home-manager/flake.nix
index 872deb8..3824b6b 100644
--- a/home-manager/.config/home-manager/flake.nix
+++ b/home-manager/.config/home-manager/flake.nix
@@ -57,12 +57,11 @@
"kdam0" = home-manager.lib.homeManagerConfiguration {
pkgs = nixpkgs.legacyPackages."x86_64-linux";
modules = [
+ { nixpkgs.overlays = [ llm-agents.overlays.default ]; }
./common
./per-user/kdam0-fedora/home.nix
];
- # Optionally use extraSpecialArgs
- # to pass through arguments to home.nix
};
};
};