Fix on system flake

This commit is contained in:
Laurent Gueret
2026-02-11 13:31:12 +01:00
parent 206b9b6050
commit cdb9cc5955
5 changed files with 10 additions and 12 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 {
environment.systemPackages = with pkgs; [
devenv
];
};
}