home: Add module for devenv

This commit is contained in:
fleaz 2023-04-18 23:07:13 +02:00
parent 06f14d9faf
commit fe5b72e22a
No known key found for this signature in database
GPG key ID: AED15F8FDD04D083
2 changed files with 9 additions and 0 deletions

View file

@ -0,0 +1,8 @@
let
source = import (fetchTarball "https://github.com/cachix/devenv/archive/v0.6.2.tar.gz");
in
{
home.packages = [
(source.default)
];
}