flake: Synchronize upstream inputs for flake and fix niri config

This commit is contained in:
ulic-youthlic 2025-06-20 03:38:56 +08:00
parent eae222883f
commit e629204c18
Signed by: youthlic
GPG key ID: 63E86C3C14A0D721
4 changed files with 201 additions and 183 deletions

View file

@ -5,15 +5,17 @@ in {
extraConfig = let
output = node "output";
in [
(output "eDP-1" [
(leaf "mode" "1920x1200@60.018")
(leaf "scale" 1.0)
(output ["eDP-1"] [
(leaf "mode" ["1920x1200@60.018"])
(leaf "scale" [1.0])
(flag "focus-at-startup")
(leaf "position" {
x = 0;
y = 0;
})
(leaf "transform" "normal")
(leaf "position" [
{
x = 0;
y = 0;
}
])
(leaf "transform" ["normal"])
])
];
};