20 lines
221 B
Nix
Executable File
20 lines
221 B
Nix
Executable File
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
|
|
{
|
|
programs = {
|
|
niri = {
|
|
settings = {
|
|
outputs."eDP-1".scale = 1.0;
|
|
binds = {
|
|
"Mod+T".action.spawn = "alacritty";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|