blob: 8a685465f246d2a9ad16850d2896066fbec9f675 (
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 multimedia contents.";
};
config = lib.mkIf cfg.enable {
home.packages = with pkgs; [ playerctl ];
};
}
|