diff options
author | sefidel <contact@sefidel.net> | 2023-04-11 17:02:59 +0900 |
---|---|---|
committer | sefidel <contact@sefidel.net> | 2023-04-11 17:02:59 +0900 |
commit | ba1f44470539e82bca3f18d3095fe73938d96f69 (patch) | |
tree | 5ee01664c07c880cef118d4b3820e47755f508fd | |
parent | 460266da19749f9d17abe4b578ad8e582cdcb761 (diff) | |
download | nixrc-ba1f44470539e82bca3f18d3095fe73938d96f69.tar.gz nixrc-ba1f44470539e82bca3f18d3095fe73938d96f69.zip |
feat(home/multimedia): add inkscape
-rw-r--r-- | home/profiles/multimedia/default.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/home/profiles/multimedia/default.nix b/home/profiles/multimedia/default.nix index 8a68546..6c78053 100644 --- a/home/profiles/multimedia/default.nix +++ b/home/profiles/multimedia/default.nix @@ -8,10 +8,10 @@ in options.profiles.multimedia = { enable = lib.mkEnableOption - "A profile that enables the system to be used for consuming multimedia contents."; + "A profile that enables the system to be used for consuming/creating multimedia contents."; }; config = lib.mkIf cfg.enable { - home.packages = with pkgs; [ playerctl ]; + home.packages = with pkgs; [ playerctl inkscape ]; }; } |