nix-configs/modules/desktop-environment/home/niri/default.nix

30 lines
536 B
Nix
Raw Normal View History

2025-03-12 02:00:13 +01:00
{pkgs, ...}: {
imports = [
./xwayland-sat.nix
./screenshot.nix
./input.nix
./binds.nix
./style.nix
./privacy.nix
./quirks.nix
2025-03-12 02:00:13 +01:00
];
programs.niri.settings = {
outputs."eDP-1" = {
scale = 1.0;
};
spawn-at-startup = [
2025-03-27 01:55:37 +01:00
{command = ["eww" "open-many" "topBar" "bottomBar"];}
2025-03-12 02:00:13 +01:00
{
command = [
"${pkgs.swaybg}/bin/swaybg"
"-i"
"${../../../../other/assets/wallpaper/wallpaper.jpg}"
2025-03-12 02:00:13 +01:00
"-m"
"fill"
];
}
];
};
}