Files
nixos-dots/dots/niri.nix
mrfluffy-dev 5897ff3410 beep boop
2025-06-13 12:26:48 +01:00

28 lines
394 B
Nix
Executable File

{
config,
lib,
pkgs,
...
}:
{
programs = {
niri = {
settings = {
outputs."eDP-1".scale = 1.0;
spawn-at-startup = [
{
command = [ "xwayland-satellite" ];
}
];
environment = {
DISPLAY = ":0";
};
binds = {
"Mod+T".action.spawn = "alacritty";
};
};
};
};
}