nixconf/home-manager/niri.nix

31 lines
662 B
Nix

{...}: {
programs.niri = {
enable = true;
settings = {
outputs = {
"eDP-2" = {
position = {
x = 0;
y = 0;
};
};
# "lenovo-1" = {
# position = {
# x = -960;
# y = -1080;
# };
# };
# "lenovo-2" = {
# position = {
# x = 960;
# y = 1080;
# };
# };
};
binds = {
"Mod+1".action.spawn = "alacritty";
"Mod+1".hotkey-overlay.hidden = false;
};
};
};
}