diff --git a/system/nyxt.nix b/system/nyxt.nix deleted file mode 100644 index e37feac9..00000000 --- a/system/nyxt.nix +++ /dev/null @@ -1,10 +0,0 @@ -{ pkgs, ... }: { - environment.systemPackages = with pkgs; [ - nyxt - gst_all_1.gst-libav - gst_all_1.gst-plugins-base - gst_all_1.gst-plugins-good - gst_all_1.gst-plugins-bad - gst_all_1.gst-plugins-ugly - ]; -} diff --git a/system/plasma.nix b/system/plasma.nix deleted file mode 100644 index 6693a94a..00000000 --- a/system/plasma.nix +++ /dev/null @@ -1,20 +0,0 @@ -{ pkgs, ... }: { - imports = [ ./desktop.nix ]; - environment.systemPackages = with pkgs; - with libsForQt5; [ - plasma-wayland-protocols - plasma-integration - plasma-browser-integration - plasma-thunderbolt - kwin-tiling - krdc - ]; - services.xserver = { - enable = true; - desktopManager.plasma5.enable = true; - displayManager.sddm = { - enable = true; - settings = { General = { InputMethod = ""; }; }; - }; - }; -}