This commit is contained in:
Filippo Berto 2024-10-21 20:02:16 +02:00
parent 8abafd73f4
commit c103109233
Signed by: bertof
GPG key ID: 9DBF7E6A1D2CE9ED
11 changed files with 45 additions and 57 deletions

View file

@ -1,4 +1,4 @@
{ pkgs, ... }:
{
home.packages = [ (pkgs.unstable_pkgs.blender.override { cudaSupport = true; }) ];
home.packages = [ (pkgs.blender.override { cudaSupport = true; }) ];
}

View file

@ -1,4 +1,4 @@
{ pkgs, ... }:
{
home.packages = builtins.attrValues { inherit (pkgs.unstable_pkgs.jetbrains) datagrip jdk; };
home.packages = builtins.attrValues { inherit (pkgs.jetbrains) datagrip jdk; };
}

View file

@ -5,7 +5,7 @@ in
{
# TODO: switch to module on next release
home.packages = [ pkgs.unstable_pkgs.joshuto ];
home.packages = [ pkgs.joshuto ];
home.shellAliases."fm" = "joshuto --change-directory";
xdg.configFile = {

View file

@ -1,7 +1,6 @@
{
programs.nix-index = {
enable = true;
# package = pkgs.unstable_pkgs.nix-index;
enableBashIntegration = true;
enableZshIntegration = true;
};

View file

@ -14,44 +14,42 @@ in
{
home.packages = builtins.attrValues {
inherit (pkgs)
ardour
breeze-icons
carla
mixxx
rnnoise
#mamba
# zrythm
# Plugins
aeolus
artyFX
autotalent
boops
calf
cardinal
fluidsynth
geonkick
giada
lsp-plugins
samplv1
sfizz
surge
surge-XT
talentedhack
vocproc
x42-plugins
zita-at1
zyn-fusion
zynaddsubfx
# helm
# noise-repellent
# speech-denoiser
# stochas
# sunvox
# tunefish
# zrythm
#mamba
aeolus
ardour
artyFX
autotalent
boops
breeze-icons
calf
cardinal
carla
fluidsynth
geonkick
giada
lsp-plugins
mixxx
rnnoise
samplv1
sfizz
surge
surge-XT
talentedhack
vital
vocproc
x42-plugins
zita-at1
zyn-fusion
zynaddsubfx
;
inherit (pkgs.unstable_pkgs) vital;
};
home.sessionVariables = variables;

View file

@ -2,6 +2,6 @@
{
home.packages = builtins.attrValues {
inherit (pkgs) python3;
inherit (pkgs.unstable_pkgs.jetbrains) pycharm-professional jdk;
inherit (pkgs.jetbrains) pycharm-professional jdk;
};
}