17 lines
262 B
Nix
17 lines
262 B
Nix
{pkgs, ...}: {
|
|
imports = [
|
|
./obsidian.nix
|
|
];
|
|
|
|
# FIXME(starter): add/edit any optional, communications related pkgs here
|
|
|
|
#imports = [ ./foo.nix ];
|
|
|
|
home.packages = with pkgs; [
|
|
blender
|
|
inkscape
|
|
libreoffice-qt
|
|
davinci-resolve
|
|
];
|
|
}
|