mirror of
https://github.com/harryssecret/homelab-nix.git
synced 2025-08-08 06:30:18 +02:00
split unused apps
This commit is contained in:
parent
0e916f7c08
commit
f4d1078dc8
3 changed files with 61 additions and 10 deletions
34
hosts/goober/features/software/workstation.nix
Normal file
34
hosts/goober/features/software/workstation.nix
Normal 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
|
||||
];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue