From a076aba69fea8f5e08ba66dd14cace6399712b8b Mon Sep 17 00:00:00 2001 From: servostar Date: Fri, 22 Dec 2023 19:15:23 +0100 Subject: [PATCH] moved filelight to extra pkgs of plasma --- configuration.nix | 8 -------- core/plasma5.nix | 4 ++++ 2 files changed, 4 insertions(+), 8 deletions(-) diff --git a/configuration.nix b/configuration.nix index e8cd4b4..144ed9f 100644 --- a/configuration.nix +++ b/configuration.nix @@ -58,16 +58,8 @@ in # List packages installed in system profile. To search, run: # $ nix search wget environment.systemPackages = (with pkgs; [ - distrobox - - go - - nodejs - - sass devbox - filelight ffmpeg-full openssl imagemagick diff --git a/core/plasma5.nix b/core/plasma5.nix index 22cd913..15be8b7 100644 --- a/core/plasma5.nix +++ b/core/plasma5.nix @@ -23,4 +23,8 @@ in programs.dconf.enable = settings.plasma5.dconf; programs.xwayland.enable = settings.plasma5.xwayland; + + environment.systemPackages = (with pkgs; [ + filelight + ]) }