mirror of
https://github.com/js0ny/dotfiles.git
synced 2026-03-22 10:42:42 +00:00
25 lines
526 B
Nix
25 lines
526 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
home.file."${config.xdg.configHome}/niri/config.kdl" = {
|
|
text = ''
|
|
spawn-at-startup "waybar" // Status Bar
|
|
spawn-at-startup "dunst" // Notifications
|
|
spawn-at-startup "fcitx5" // Input Method
|
|
spawn-at-startup "${pkgs.hyprpolkitagent}/libexec/hyprpolkitagent"
|
|
spawn-at-startup
|
|
input {
|
|
xkb {}
|
|
numlock
|
|
touchpad {
|
|
tap
|
|
naturalscroll
|
|
}
|
|
mouse {}
|
|
}
|
|
'';
|
|
enable = false; # TODO:
|
|
};
|
|
}
|