feat: add devenv

This commit is contained in:
Glen Goodwin 2023-06-07 01:03:26 -04:00
parent cc4f3398ff
commit 327db2d36c
5 changed files with 199 additions and 6 deletions

View file

@ -0,0 +1,8 @@
{ config, lib, pkgs, user, devenv, ... }: {
home.packages = with pkgs; [
cachix
devenv.packages.${system}.devenv
];
}