Little clean

This commit is contained in:
2026-02-13 16:52:13 +01:00
parent b229dc8e11
commit 4de8ef49a4
3 changed files with 3 additions and 29 deletions
-22
View File
@@ -1,22 +0,0 @@
{
pkgs,
lib,
config,
...
}:
with lib;
let
cfg = config.home.shell.env;
in
{
options.home.shell.env = {
enable = mkEnableOption "System devenv service";
};
config = mkIf cfg.enable {
home.packages = with pkgs; [
devenv
];
};
}