19 lines
355 B
Nix
19 lines
355 B
Nix
{ scripts, config, lib, pkgs, ... }:
|
|
|
|
{
|
|
enable = true;
|
|
config = {
|
|
terminal = "kitty";
|
|
bars = [{
|
|
command = "${pkgs.lib.getExe pkgs.waybar}";
|
|
position = "bottom";
|
|
}];
|
|
modifier = "Mod4";
|
|
input = { "type:touchpad" = { natural_scroll = "enabled"; }; };
|
|
window = {
|
|
border = 2;
|
|
titlebar = true;
|
|
};
|
|
};
|
|
};
|