feat: setup nix flake

This commit is contained in:
eric
2026-03-18 00:05:38 +01:00
commit 2ca960a355
2 changed files with 37 additions and 0 deletions

15
modules/home.nix Normal file
View File

@@ -0,0 +1,15 @@
{ pkgs, lib, ... }:
{
# Company env vars — available in all shells
home.sessionVariables = {
BAO_ADDR = "https://secrets.api.nodeiwest.se";
SOME_REGISTRY = "git.dgren.dev";
# etc.
};
home.packages = with pkgs; [
# Tools every dev needs
openbao
# etc.
];
}