mirror of
https://git.gay/xqtc/nixos-config
synced 2024-11-23 00:20: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";
|
||
|
};
|
||
|
};
|
||
|
}
|