Add nixos config

This commit is contained in:
Martin Pander
2026-02-06 15:23:14 +01:00
parent 802c215d71
commit 0e00b8811a
24 changed files with 1754 additions and 14 deletions

23
nix/nixos/modules/dev.nix Normal file
View File

@@ -0,0 +1,23 @@
{ config, pkgs, ... }:
{
programs.direnv = {
enable = true;
enableZshIntegration = true;
nix-direnv.enable = true;
};
home.packages = with pkgs; [
visidata
bubblewrap
# TODO: Custom packages - need to verify availability or create derivations
# These packages were in the original configuration but may need custom setup:
# claude-code
# opencode
# gemini-cli
# Uncomment the above packages if they are available in your nixpkgs,
# or create custom derivations for them in a separate packages/ directory.
];
}