mirror of
https://git.gay/xqtc/nixos-config
synced 2024-11-22 21:50:33 +01:00
20 lines
306 B
Nix
20 lines
306 B
Nix
{
|
|
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";
|
|
};
|
|
};
|
|
}
|