proper repo
This commit is contained in:
parent
33d01daa3d
commit
8a35a32445
17 changed files with 338 additions and 109 deletions
26
modules/creative.nix
Normal file
26
modules/creative.nix
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
{ den, inputs, ... }: {
|
||||
den.aspects.creative.nixos = { pkgs, ... }:
|
||||
let
|
||||
pkgs-unstable = import inputs.nixpkgs-unstable {
|
||||
system = pkgs.system;
|
||||
config.allowUnfree = true;
|
||||
};
|
||||
in {
|
||||
environment.systemPackages = with pkgs-unstable; [
|
||||
# 3D
|
||||
blender
|
||||
goxel
|
||||
|
||||
# Pixel art
|
||||
aseprite
|
||||
|
||||
# Image editing
|
||||
gimp
|
||||
krita
|
||||
|
||||
# Video
|
||||
obs-studio
|
||||
kdePackages.kdenlive
|
||||
];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue