split unused apps

This commit is contained in:
chloe 2025-03-14 09:15:56 +01:00
parent 0e916f7c08
commit f4d1078dc8
3 changed files with 61 additions and 10 deletions

View file

@ -1,4 +1,4 @@
{config, ...}:
{ config, ... }:
{
imports = [
./wine.nix
@ -8,6 +8,7 @@
./discord.nix
./ollama.nix
./steam.nix
./workstation.nix
];
}

View file

@ -0,0 +1,34 @@
{ pkgs, lib, ... }:
{
nixpkgs.config.allowUnfreePredicate =
pkg:
builtins.elem (lib.getName pkg) [
"reaper"
"davinci-resolve"
];
environment.systemPackages = with pkgs; [
# music editing software
reaper
libreoffice-qt
hunspell
hunspellDicts.fr-any
hunspellDicts.en-gb-large
# video editing software
davinci-resolve
# recording software
obs-studio
# drawing software
krita
# 3d modeling
blender
signal-desktop
gajim
];
}