!qol(restructure): heavy restructure

This commit is contained in:
2025-12-10 21:37:23 +00:00
parent b5c2089694
commit f1337d3edd
114 changed files with 2 additions and 360 deletions

View File

@@ -0,0 +1,4 @@
_: {
home = ./home.nix;
# nixos: ./nixos.nix;
}

25
modules/bottles/home.nix Normal file
View File

@@ -0,0 +1,25 @@
{
config,
lib,
inputs,
pkgs,
home,
system,
...
}:
let
cfg = config.modules.bottles;
in
{
options.modules.bottles = {
enable = lib.mkEnableOption "Blender configuration module";
};
# whole bottles config including addons is too fat to include here
config = lib.mkIf cfg.enable {
home.packages = [
pkgs.bottles
];
};
# nix'ing a bottles config is most likely not possible
# could probs install bottles addons through nix since they are fat fat mega fat to install TODO
}