Only install video production apps on the desktop

This commit is contained in:
SebastianStork 2024-04-02 22:13:38 +02:00
parent dbd3c3ff19
commit f6ce8165b6
3 changed files with 20 additions and 14 deletions

View file

@ -0,0 +1,9 @@
{pkgs, ...}: {
imports = [./default.nix];
home-manager.users.seb.home.packages = [
pkgs.obs-studio
pkgs.libsForQt5.kdenlive
pkgs.gimp
];
}

View file

@ -29,18 +29,15 @@
programs.btop.enable = true;
home.packages = with pkgs; [
notepadqq
brave
spotify
cinnamon.nemo-with-extensions
discord
flameshot
jetbrains.idea-community
vlc
obs-studio
libsForQt5.kdenlive
gimp
onlyoffice-bin_latest
home.packages = [
pkgs.notepadqq
pkgs.brave
pkgs.spotify
pkgs.cinnamon.nemo-with-extensions
pkgs.discord
pkgs.flameshot
pkgs.jetbrains.idea-community
pkgs.vlc
pkgs.onlyoffice-bin_latest
];
}