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
+23
View File
@@ -0,0 +1,23 @@
{
pkgs,
lib,
config,
...
}:
with lib;
let
cfg = config.home.env.python;
in
{
options.home.env.python = {
enable = mkEnableOption "System nh service";
};
config = mkIf cfg.enable {
home.packages = with pkgs; [
python315
uv
];
};
}