aboutsummaryrefslogtreecommitdiff
path: root/home/profiles/creative
diff options
context:
space:
mode:
authorsefidel <contact@sefidel.net>2023-09-22 15:19:08 +0900
committersefidel <contact@sefidel.net>2023-09-22 15:19:08 +0900
commit4d4beefd5d72b25384dfd930793611405a5497b5 (patch)
treebc9f5fc118d80c9ab3231a724dea1a3388768401 /home/profiles/creative
parent073ac6542e1ea2c4349478b82730b20a2936fcdf (diff)
downloadnixrc-4d4beefd5d72b25384dfd930793611405a5497b5.zip
feat(home): split multimedia to creative
Diffstat (limited to 'home/profiles/creative')
-rw-r--r--home/profiles/creative/default.nix17
1 files changed, 17 insertions, 0 deletions
diff --git a/home/profiles/creative/default.nix b/home/profiles/creative/default.nix
new file mode 100644
index 0000000..9369659
--- /dev/null
+++ b/home/profiles/creative/default.nix
@@ -0,0 +1,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 kdenlive ];
+ };
+}