From ece02f35c6ae5e831a1fa9ca74c3df5ec483da87 Mon Sep 17 00:00:00 2001 From: Colin Date: Wed, 12 Jul 2023 08:24:55 +0000 Subject: [PATCH] gui: delete plasma --- hosts/modules/gui/default.nix | 1 - hosts/modules/gui/plasma.nix | 28 ---------------------------- 2 files changed, 29 deletions(-) delete mode 100644 hosts/modules/gui/plasma.nix diff --git a/hosts/modules/gui/default.nix b/hosts/modules/gui/default.nix index e6683fef..d32ee118 100644 --- a/hosts/modules/gui/default.nix +++ b/hosts/modules/gui/default.nix @@ -4,7 +4,6 @@ ./gnome.nix ./gtk.nix ./phosh.nix - ./plasma.nix ./plasma-mobile.nix ./sway ./sxmo.nix diff --git a/hosts/modules/gui/plasma.nix b/hosts/modules/gui/plasma.nix deleted file mode 100644 index d427daae..00000000 --- a/hosts/modules/gui/plasma.nix +++ /dev/null @@ -1,28 +0,0 @@ -{ lib, config, ... }: - -with lib; -let - cfg = config.sane.gui.plasma; -in -{ - options = { - sane.gui.plasma.enable = mkOption { - default = false; - type = types.bool; - }; - }; - - config = mkIf cfg.enable { - sane.programs.guiApps.enableFor.user.colin = true; - - # start plasma on boot - services.xserver.enable = true; - services.xserver.desktopManager.plasma5.enable = true; - services.xserver.displayManager.sddm.enable = true; - - # gnome does networking stuff with networkmanager - networking.useDHCP = false; - networking.networkmanager.enable = true; - networking.wireless.enable = lib.mkForce false; - }; -}