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

@ -32,7 +32,7 @@
specialArgs = {inherit inputs;}; specialArgs = {inherit inputs;};
modules = [ modules = [
./hosts/seb-desktop ./hosts/seb-desktop
./users/seb "${./.}/users/seb/@seb-desktop.nix"
]; ];
}; };
seb-laptop = nixpkgs.lib.nixosSystem { seb-laptop = nixpkgs.lib.nixosSystem {

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; programs.btop.enable = true;
home.packages = with pkgs; [ home.packages = [
notepadqq pkgs.notepadqq
brave pkgs.brave
spotify pkgs.spotify
cinnamon.nemo-with-extensions pkgs.cinnamon.nemo-with-extensions
discord pkgs.discord
flameshot pkgs.flameshot
jetbrains.idea-community pkgs.jetbrains.idea-community
vlc pkgs.vlc
obs-studio pkgs.onlyoffice-bin_latest
libsForQt5.kdenlive
gimp
onlyoffice-bin_latest
]; ];
} }