Evie Litherland-Smith
05d19c1813
Split system-level sway and plasma config into separate files, move sway-specific home-level config to sway file. Only truly common desktop components are kept in common spaces. This allows much easier switching between using KDE Plasma and Sway.
14 lines
253 B
Nix
14 lines
253 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}: {
|
|
imports = [
|
|
./work.nix
|
|
./desktop/plasma/default.nix
|
|
];
|
|
wayland.windowManager.sway = lib.mkIf config.wayland.windowManager.sway.enable {
|
|
config.output."Dell Inc. DELL P3223QE CCG8YN3".scale = "1.5";
|
|
};
|
|
}
|