summaryrefslogtreecommitdiff
path: root/modules/plasma.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/plasma.nix')
-rw-r--r--modules/plasma.nix52
1 files changed, 0 insertions, 52 deletions
diff --git a/modules/plasma.nix b/modules/plasma.nix
deleted file mode 100644
index 1a7a170..0000000
--- a/modules/plasma.nix
+++ /dev/null
@@ -1,52 +0,0 @@
-{ pkgs, ... }:
-{
- imports = [
- ./desktop-software.nix
- ./fonts.nix
- ];
-
- environment.systemPackages = with pkgs; [
- kaidan
- kdePackages.filelight
- kdePackages.okular
- vlc
- ];
-
- programs.kde-pim = {
- enable = true;
- kmail = true;
- kontact = true;
- merkuro = true;
- };
-
- # Enable sound.
- security.rtkit.enable = true;
- services.pipewire = {
- enable = true;
- alsa.enable = true;
- pulse.enable = true;
- };
-
- programs.zsh.vteIntegration = true;
- programs.bash.vteIntegration = true;
-
- hardware.bluetooth.enable = true;
-
- services.displayManager.sddm = {
- enable = true;
- wayland.enable = true;
- };
-
- services.desktopManager.plasma6.enable = true;
-
- programs.ssh = {
- startAgent = true;
- enableAskPassword = false;
- extraConfig = ''
- AddKeysToAgent yes
- '';
- };
- programs.firefox.nativeMessagingHosts.packages = with pkgs.kdePackages; [
- plasma-browser-integration
- ];
-}