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

38 lines
571 B
Nix
Raw Permalink Normal View History

2025-04-11 09:20:46 +02:00
{ pkgs, ... }:
{
2025-03-12 02:00:13 +01:00
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-04-11 09:20:46 +02:00
{
command = [
"eww"
"open-many"
"topBar"
"bottomBar"
];
}
2025-03-12 02:00:13 +01:00
{
command = [
"${pkgs.swaybg}/bin/swaybg"
"-i"
2025-03-27 20:24:29 +01:00
"${./wallpaper.jpg}"
2025-03-12 02:00:13 +01:00
"-m"
"fill"
];
}
];
};
}