Move folder and add Obsidian options

This commit is contained in:
Laurent Gueret
2026-01-30 19:47:01 +01:00
parent bc921319d9
commit 33cc5a5c18
6 changed files with 42 additions and 7 deletions
+22
View File
@@ -0,0 +1,22 @@
{
pkgs,
lib,
config,
...
}:
with lib;
let
cfg = config.os.shell.devenv;
in
{
options.os.shell.devenv = {
enable = mkEnableOption "System devenv service";
};
config = mkIf cfg.enable {
environment.systemPackages = with pkgs; [
devenv
];
};
}