nixos-config/home/modules/dwl.nix

20 lines
306 B
Nix
Raw Normal View History

2024-07-18 19:17:30 +02:00
{
pkgs,
config,
lib,
...
}: {
imports = [../programs/dwl.nix];
programs.dwl = {
enable = true;
patches = [
../config-files/dwl/patches/attachbottom.patch
../config-files/dwl/patches/ipc.patch
];
cmd = {
terminal = "${pkgs.wezterm}/bin/wezterm";
};
};
}