9 lines
150 B
Nix
9 lines
150 B
Nix
|
let
|
||
|
source = import (fetchTarball "https://github.com/cachix/devenv/archive/v0.6.2.tar.gz");
|
||
|
in
|
||
|
{
|
||
|
home.packages = [
|
||
|
(source.default)
|
||
|
];
|
||
|
}
|