11 lines
247 B
Nix
11 lines
247 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";
|
|
};
|
|
}
|