update #1

Merged
hektor merged 10 commits from claude-code-test into main 2025-12-03 15:53:43 +01:00
2 changed files with 20 additions and 3 deletions
Showing only changes of commit 1c844adf91 - Show all commits

2
.gitignore vendored
View File

@@ -4,3 +4,5 @@ result
result-*
nixos-efi-vars.fd
home/hosts/work/packages.local.nix

View File

@@ -1,4 +1,19 @@
{ pkgs, config, ... }:
{
inputs,
config,
pkgs,
...
}:
with pkgs;
[ ]
let
localPackages =
if builtins.pathExists ./packages.local.nix then
import ./packages.local.nix { inherit inputs config pkgs; }
else
[ ];
in
(with pkgs; [
inputs.nvim.packages.x86_64-linux.nvim
])
++ localPackages