Add env file

This commit is contained in:
2026-02-17 15:22:31 +01:00
parent d3dd555895
commit ce81e66652
8 changed files with 94 additions and 17 deletions
-22
View File
@@ -1,22 +0,0 @@
{
pkgs,
lib,
config,
...
}:
with lib;
let
cfg = config.home.env.shell;
in
{
options.home.env.shell = {
enable = mkEnableOption "Zen Editor options";
};
config = mkIf cfg.enable {
home.packages = with pkgs; [
devenv
];
};
}