fix home-manager and misc changes

This commit is contained in:
2024-11-07 14:17:25 +01:00
parent dea19e0b3b
commit 01f1e82284
11 changed files with 237 additions and 46 deletions

View File

@@ -0,0 +1,21 @@
{
pkgs,
config,
lib,
...
}: let
inherit (lib) mkEnableOption mkIf;
cfg = config.mine.home.stream-tools;
in {
options.my-namespace.home.stream-tools = {
enable = mkEnableOption "Enable the Stream Machine Tools";
};
config = mkIf cfg.enable {
home = {
packages = with pkgs; [
obs-studio
];
};
};
}