19 lines
264 B
Nix
19 lines
264 B
Nix
{...}: {
|
|
xdg.configFile."niri/config.kdl".text = ''
|
|
input {
|
|
keyboard {
|
|
xkb {
|
|
layout "us"
|
|
}
|
|
}
|
|
}
|
|
|
|
binds {
|
|
Mod+Return { spawn "ghostty"; }
|
|
Mod+B { spawn "firefox"; }
|
|
Mod+Shift+Q { close-window; }
|
|
Mod+Shift+E { quit; }
|
|
}
|
|
'';
|
|
}
|