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

@ -169,6 +169,7 @@
browser = [ firefox chromium qutebrowser tor-browser ];
multimedia = [ mpv zathura ];
dev = [ vim emacs vscode lorri direnv ];
modelling = [ blender cura ];
};
};
};

View file

@ -11,6 +11,7 @@ emacsWithPackages (
all-the-icons
company
dap-mode
# dirvish
doom-modeline
evil
evil-collection
@ -30,6 +31,7 @@ emacsWithPackages (
org-download
org-fragtog
org-roam
org-roam-ui
org-superstar
projectile
psc-ide

View file

@ -1,3 +1,4 @@
{ pkgs, ... }:
{
programs.adb.enable = true;
# programs.adb.enable = !pkgs.stdenv.hostPlatform.isAarch64;
}

View file

@ -3,7 +3,7 @@
home-manager.users.ccr = { suites, ... }: {
imports = with suites; shell ++ base ++ (if config.networking.hostName != "hs" then
(
gui ++ browser ++ multimedia ++ emails ++ dev
gui ++ browser ++ multimedia ++ emails ++ dev ++ modelling
) else [ ]);
home.packages = with pkgs; [
@ -12,7 +12,7 @@
] ++ (if config.networking.hostName != "hs" then [
imv
calibre
scrcpy
# scrcpy # TODO: create a profile only for x86_64 (not available for aarch64)
element-desktop
gtk-engine-murrine
gtk_engines

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)