feat: add '3d' and 'photography' modules to andromache

This commit is contained in:
2026-01-26 19:35:06 +01:00
parent 791d90b703
commit 2303988b74
3 changed files with 22 additions and 4 deletions

View File

@@ -12,6 +12,8 @@ in
{ {
imports = [ imports = [
../../modules/desktop/niri ../../modules/desktop/niri
../../modules/3d
../../modules/git.nix ../../modules/git.nix
# ../../modules/hetzner.nix # ../../modules/hetzner.nix
../../modules/k9s.nix ../../modules/k9s.nix
@@ -20,6 +22,7 @@ in
../../modules/taskwarrior.nix ../../modules/taskwarrior.nix
../../modules/keepassxc.nix ../../modules/keepassxc.nix
../../modules/anki.nix ../../modules/anki.nix
../../modules/photography
../../modules/browser ../../modules/browser
../../modules/shell ../../modules/shell
]; ];
@@ -43,8 +46,5 @@ in
taskwarrior.config.recurrence = lib.mkForce "on"; taskwarrior.config.recurrence = lib.mkForce "on";
}; };
home.packages = import ../packages.nix { home.packages = import ../packages.nix { inherit pkgs; };
inherit pkgs;
inherit config;
};
} }

View File

@@ -0,0 +1,11 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [
bambu-studio
blender
openscad-lsp
openscad-unstable
orca-slicer
];
}

View File

@@ -0,0 +1,7 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [
darktable
];
}