Clean of env files

This commit is contained in:
2026-02-16 12:27:29 +01:00
parent aaed9ad61f
commit 5e42a1aa37
8 changed files with 7 additions and 96 deletions
+22
View File
@@ -0,0 +1,22 @@
{
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
];
};
}