Rename fake modules to modules-old
This commit is contained in:
parent
82a2d7bbea
commit
97db5d05d3
28 changed files with 13 additions and 13 deletions
35
nixos/modules-old/des/plasma/default.nix
Normal file
35
nixos/modules-old/des/plasma/default.nix
Normal file
|
@ -0,0 +1,35 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
services.xserver = {
|
||||
enable = true;
|
||||
|
||||
displayManager = {
|
||||
defaultSession = "plasmawayland";
|
||||
sddm = {
|
||||
enable = true;
|
||||
# https://discourse.nixos.org/t/plasma-wayland-session-not-available-from-sddm/13447/2
|
||||
settings.Wayland.SessionDir = "${pkgs.plasma5Packages.plasma-workspace}/share/wayland-sessions";
|
||||
};
|
||||
};
|
||||
|
||||
desktopManager.plasma5 = {
|
||||
enable = true;
|
||||
useQtScaling = true;
|
||||
};
|
||||
|
||||
excludePackages = with pkgs; [
|
||||
xterm
|
||||
];
|
||||
};
|
||||
|
||||
environment.plasma5.excludePackages = with pkgs.libsForQt5; [
|
||||
elisa
|
||||
okular
|
||||
khelpcenter
|
||||
konsole
|
||||
print-manager
|
||||
plasma-systemmonitor
|
||||
gwenview
|
||||
];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue