2025-04-30 18:32:16 +08:00
|
|
|
{inputs, ...}: let
|
|
|
|
|
inherit (inputs.niri-flake.lib.kdl) node leaf plain flag;
|
|
|
|
|
in {
|
|
|
|
|
david.programs.niri = {
|
|
|
|
|
extraConfig = let
|
|
|
|
|
output = node "output";
|
|
|
|
|
in [
|
2025-05-08 23:58:23 +08:00
|
|
|
(output "DP-3" [
|
|
|
|
|
(leaf "mode" "2560x1440@169.900")
|
|
|
|
|
(leaf "scale" 1.0)
|
|
|
|
|
(leaf "position" {
|
|
|
|
|
x = 0;
|
|
|
|
|
y = 0;
|
|
|
|
|
})
|
|
|
|
|
(leaf "transform" "normal")
|
|
|
|
|
(flag "focus-at-startup")
|
|
|
|
|
])
|
2025-04-30 18:32:16 +08:00
|
|
|
(output "DP-1" [
|
|
|
|
|
(leaf "mode" "2560x1440@169.900")
|
|
|
|
|
(leaf "scale" 1.0)
|
|
|
|
|
(leaf "position" {
|
|
|
|
|
x = 0;
|
|
|
|
|
y = 0;
|
|
|
|
|
})
|
|
|
|
|
(leaf "transform" "normal")
|
2025-05-02 15:36:40 +08:00
|
|
|
(flag "focus-at-startup")
|
2025-04-30 18:32:16 +08:00
|
|
|
])
|
|
|
|
|
(output "eDP-1" [
|
|
|
|
|
(leaf "mode" "2560x1440@165.003")
|
|
|
|
|
(leaf "scale" 1.5)
|
|
|
|
|
(leaf "position" {
|
|
|
|
|
x = 2560;
|
|
|
|
|
y = 0;
|
|
|
|
|
})
|
|
|
|
|
(leaf "transform" "normal")
|
|
|
|
|
])
|
|
|
|
|
];
|
|
|
|
|
};
|
|
|
|
|
}
|