about summary refs log tree commit diff
path: root/home/profiles/creative/default.nix
blob: 60c8ce22e34e0acb7d45a186e72a906b822c73a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ config, lib, pkgs, ... }:
let cfg = config.profiles.creative;
in
{
  imports = [
    ../../modules/programs/nixpkgs
  ];

  options.profiles.creative = {
    enable = lib.mkEnableOption
      "A profile that enables the system to be used for creating multimedia contents.";
  };

  config = lib.mkIf cfg.enable {
    home.packages = with pkgs; [ inkscape krita kooha kdenlive ];
  };
}