Plasma6 config

This commit is contained in:
Filippo Berto 2025-07-24 13:02:24 +02:00
parent 358c667037
commit 21f8ce9601
Signed by: bertof
GPG key ID: 9DBF7E6A1D2CE9ED
5 changed files with 16 additions and 3 deletions

View file

@ -292,6 +292,7 @@
# # S3 cache write # # S3 cache write
# ./modules/nixos/s3_cache_write.nix # ./modules/nixos/s3_cache_write.nix
./modules/nixos/plasma6.nix
# ./modules/nixos/cuda_support.nix # ./modules/nixos/cuda_support.nix
# ./modules/nixos/ollama.nix # ./modules/nixos/ollama.nix
./modules/nixos/pro_audio.nix ./modules/nixos/pro_audio.nix
@ -324,6 +325,7 @@
# ./modules/nixos/s3_cache_write.nix # ./modules/nixos/s3_cache_write.nix
# { age.secrets.s3_sif = { file = ./secrets/s3_sif.age; owner = "bertof"; }; } # { age.secrets.s3_sif = { file = ./secrets/s3_sif.age; owner = "bertof"; }; }
./modules/nixos/plasma6.nix
# ./modules/nixos/ollama.nix # ./modules/nixos/ollama.nix
./modules/nixos/pro_audio.nix ./modules/nixos/pro_audio.nix
./modules/nixos/kdeconnect.nix ./modules/nixos/kdeconnect.nix

View file

@ -38,7 +38,6 @@
brave brave
eog eog
evince evince
file-roller
heroic heroic
jellyfin-tui jellyfin-tui
openvpn openvpn

View file

@ -248,7 +248,7 @@
# lomiri.enable = true; # lomiri.enable = true;
# cinnamon.enable = true; # cinnamon.enable = true;
# plasma5 = { enable = true; runUsingSystemd = true; useQtScaling = true; }; # plasma5 = { enable = true; runUsingSystemd = true; useQtScaling = true; };
# plasma6 = { enable = true; enableQt5Integration = true; }; plasma6 = { enable = true; enableQt5Integration = true; };
}; };
# displayManager.sddm = { # displayManager.sddm = {
# enable = true; # enable = true;

View file

@ -38,7 +38,6 @@
droidcam droidcam
eog eog
evince evince
file-roller
gallery-dl gallery-dl
geeqie geeqie
gnome-font-viewer gnome-font-viewer

13
modules/nixos/plasma6.nix Normal file
View file

@ -0,0 +1,13 @@
{ pkgs, ... }: {
environment.plasma6.excludePackages = with pkgs.kdePackages; [
elisa
konsole
kate
spectacle
];
services.desktopManager.plasma6 = {
enable = true;
enableQt5Integration = true;
};
}