home: Add module for devenv
This commit is contained in:
parent
06f14d9faf
commit
fe5b72e22a
|
@ -21,6 +21,7 @@ in
|
|||
modules/gpg.nix
|
||||
modules/udiskie.nix
|
||||
modules/discord.nix
|
||||
modules/devenv.nix
|
||||
] ++ lib.optionals (config.networking.hostName == "jimbo") [
|
||||
modules/kanshi.nix
|
||||
../secrets/codemonauts.nix
|
||||
|
|
8
home-manager/modules/devenv.nix
Normal file
8
home-manager/modules/devenv.nix
Normal 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)
|
||||
];
|
||||
}
|
Loading…
Reference in a new issue