11 lines
279 B
Nix
11 lines
279 B
Nix
|
{pkgs, ...}: {
|
||
|
programs.niri.settings = {
|
||
|
screenshot-path = "~/Pictures/screenshots/%Y-%m-%dT%H:%M:%S.png";
|
||
|
binds = {
|
||
|
"Print".action.screenshot = [];
|
||
|
"Ctrl+Print".action.screenshot-screen = [];
|
||
|
"Alt+Print".action.screenshot-window = [];
|
||
|
};
|
||
|
};
|
||
|
}
|