From 637c0ea658adbf84c4b74ee1931f4ba2c0b21b16 Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Mon, 26 Aug 2024 12:18:00 +0100 Subject: [PATCH] Move ktorrent and CAD/modelling programs to Vanguard only --- home/Vanguard.nix | 7 +++++++ home/personal.nix | 9 +-------- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/home/Vanguard.nix b/home/Vanguard.nix index d35c2340..0c5ba1ed 100644 --- a/home/Vanguard.nix +++ b/home/Vanguard.nix @@ -6,6 +6,13 @@ ./streaming/default.nix ./desktop/plasma/default.nix ]; + home.packages = with pkgs; [ + kdePackages.ktorrent + blender + freecad + openscad + kicad-small + ]; programs.plasma = { configFile = { bluedevilglobalrc.Global.launchState.value = "enable"; diff --git a/home/personal.nix b/home/personal.nix index 6e5dcbe7..4a135c43 100644 --- a/home/personal.nix +++ b/home/personal.nix @@ -1,12 +1,5 @@ { pkgs, ... }: { imports = [ ./default.nix ]; - home.packages = with pkgs; [ - kdePackages.ktorrent - prusa-slicer - blender - freecad - openscad - kicad-small - ]; + home.packages = with pkgs; [ prusa-slicer ]; }