fmt: reformatted using nixpkgs-fmt prettifier mpd: created configuration hypr: add window rules commons: add usingMusicPlayerDaemon variable
17 lines
270 B
Nix
17 lines
270 B
Nix
{ pkgs
|
|
, config
|
|
, lib
|
|
, ...
|
|
}: {
|
|
programs.foot = {
|
|
enable = true;
|
|
settings = {
|
|
main = {
|
|
term = "xterm-256color";
|
|
dpi-aware = lib.mkForce "yes";
|
|
};
|
|
mouse = { hide-when-typing = "yes"; };
|
|
};
|
|
server.enable = true;
|
|
};
|
|
}
|