dot.nix/hosts/global/common/hyprland/foot.nix
Chris Toph 704a630a33 Refactors host config file structure
• Migrates configuration files from 'common' to 'global'
• Updates import paths across modules
• Removes outdated macOS configuration
• Adds user configuration files WIP
2025-05-08 17:06:03 -04:00

16 lines
252 B
Nix

{
programs.foot = {
enable = true;
settings = {
main = {
term = "xterm-256color";
font = "monospace:size=10";
dpi-aware = "yes";
};
mouse = {
hide-when-typing = "yes";
};
};
};
}