feat(dregil): Enable devenv

This commit is contained in:
Alexander Kobjolke 2024-05-26 11:53:05 +02:00
parent 02a4c192d4
commit 807b895cc0
2 changed files with 6 additions and 0 deletions

View file

@ -8,6 +8,7 @@
{
imports = [
./cli.nix
./programs/devenv.nix
./programs/rofi
./programs/xmonad
./programs/jitsi-meet

View file

@ -0,0 +1,5 @@
{ pkgs, ... }:
{
config.home.packages = [ pkgs.devenv ];
}