mirror of
https://codeberg.org/leana8959/.files.git
synced 2025-12-06 06:39:14 +00:00
vanadium: move media creation packages to environment
This commit is contained in:
parent
419355f51f
commit
054fc70776
2 changed files with 19 additions and 8 deletions
|
|
@ -86,19 +86,11 @@ in {
|
||||||
home.packages = [
|
home.packages = [
|
||||||
# productivity / media
|
# productivity / media
|
||||||
pkgs.evolution
|
pkgs.evolution
|
||||||
pkgs.libreoffice
|
|
||||||
pkgs.iamb
|
|
||||||
pkgs.calibre
|
pkgs.calibre
|
||||||
pkgs.rawtherapee
|
|
||||||
pkgs.digikam
|
pkgs.digikam
|
||||||
pkgs.gimp
|
|
||||||
pkgs.vlc
|
pkgs.vlc
|
||||||
pkgs.nautilus
|
pkgs.nautilus
|
||||||
pkgs.sushi # space bar previewer
|
pkgs.sushi # space bar previewer
|
||||||
pkgs.blender
|
|
||||||
pkgs.inkscape
|
|
||||||
pkgs.aseprite
|
|
||||||
pkgs.xournalpp
|
|
||||||
|
|
||||||
# wm utilities
|
# wm utilities
|
||||||
myPkgs.xbrightness
|
myPkgs.xbrightness
|
||||||
|
|
|
||||||
19
nix/environments/creation.nix
Normal file
19
nix/environments/creation.nix
Normal file
|
|
@ -0,0 +1,19 @@
|
||||||
|
#
|
||||||
|
# Some media creation tools that I don't use often
|
||||||
|
#
|
||||||
|
{
|
||||||
|
buildEnv,
|
||||||
|
#
|
||||||
|
pkgs,
|
||||||
|
}:
|
||||||
|
buildEnv {
|
||||||
|
name = "media-creation";
|
||||||
|
paths = [
|
||||||
|
pkgs.gimp
|
||||||
|
pkgs.inkscape
|
||||||
|
pkgs.aseprite
|
||||||
|
pkgs.blender
|
||||||
|
pkgs.xournalpp
|
||||||
|
pkgs.libreoffice
|
||||||
|
];
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue