blender and org-roam-ui

This commit is contained in:
Andrea Ciceri 2021-12-13 13:08:43 +01:00
parent 7f18e318b7
commit 264b1d0ac4
No known key found for this signature in database
GPG key ID: A1FC89532D1C5654
8 changed files with 38 additions and 9 deletions

View file

@ -0,0 +1,8 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [
] ++ (if !stdenv.hostPlatform.isAarch64 then [
blender
]
else [ ]);
}

View file

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

View file

@ -31,17 +31,22 @@
};
in
with pkgs; [
python3Full
fd
ag
nixpkgs-fmt
rnix-lsp
haskell-language-server
stylish-haskell
fd
ffmpegthumbnailer
graphviz-nox
haskell-language-server
hunspell
hunspellDicts.en_US
hunspellDicts.it_IT
imagemagick
mediainfo
nixpkgs-fmt
poppler_utils
python3Full
rnix-lsp
stylish-haskell
unzip
(
makeDesktopItem {
name = "org-protocol";

View file

@ -126,5 +126,11 @@
(org-roam-db-autosync-mode)
(require 'org-roam-protocol))
(use-package org-roam-ui
:after org-roam
:config (setq org-roam-ui-sync-theme t
org-roam-ui-follow t
org-roam-ui-update-on-save t
org-roam-ui-open-on-start t))
(provide 'config-org)