[WIP] Refactor nix config

This commit is contained in:
Martin
2026-02-06 20:51:39 +01:00
parent f54655f3ae
commit 8ca8d55826
25 changed files with 2011 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
{ config, pkgs, ... }:
{
programs.direnv = {
enable = true;
enableZshIntegration = true;
nix-direnv.enable = true;
};
home.packages = with pkgs; [
visidata
bubblewrap
];
}