about summary refs log tree commit diff
path: root/home/profiles/creative/default.nix
blob: a119a8f38e92c9907aecf80eb4da9eb84886545e (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/nixpkgs.nix
  ];

  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 ];
  };
}