blob: 189112e723faf538a98139c9c9f24ec90be45479 (
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.multimedia;
in
{
imports = [
../../modules/programs/nixpkgs
];
options.profiles.multimedia = {
enable = lib.mkEnableOption
"A profile that enables the system to be used for consuming/creating multimedia contents.";
};
config = lib.mkIf cfg.enable {
home.packages = with pkgs; [ playerctl inkscape krita kdenlive ];
};
}
|