summaryrefslogtreecommitdiff
path: root/modules/plasma.nix
diff options
context:
space:
mode:
authorGrisha Shipunov2025-07-19 12:27:04 +0000
committerGrisha Shipunov2025-07-19 12:59:37 +0000
commit1baa256be04a8b4e711a7d48a76197b5ffad6637 (patch)
treebbc01e0efd976e8f6185f421e41c650c1e6a53ee /modules/plasma.nix
parentb602a0c24771b1209003098ffa7ac496642cd084 (diff)
retire toaster
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
- ];
-}