feat(dregil): Enable devenv

This commit is contained in:
Alexander Kobjolke 2024-05-26 11:53:05 +02:00
parent a7811a58ac
commit db3ccf5d7e
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 ];
}