Fix on modules name and on zsh

This commit is contained in:
2026-02-11 19:15:20 +01:00
parent 6911410f6a
commit 4f10ad35cd
24 changed files with 65 additions and 62 deletions
+22
View File
@@ -0,0 +1,22 @@
{
pkgs,
lib,
config,
...
}:
with lib;
let
cfg = config.home.shell.devenv;
in
{
options.home.shell.devenv = {
enable = mkEnableOption "System devenv service";
};
config = mkIf cfg.enable {
home.packages = with pkgs; [
devenv
];
};
}