diff options
| author | Rosa <rosaontheweb@proton.me> | 2026-01-13 20:34:43 -0500 |
|---|---|---|
| committer | Rosa <rosaontheweb@proton.me> | 2026-01-13 20:34:43 -0500 |
| commit | 909f611b0220920cde9e6e51e71603cca7e96feb (patch) | |
| tree | 02611962b88b1063a6747a819cc4735a2309bc28 /hosts | |
| parent | 2bc281ffe486560e8c9a7f48c867a135892b2c9d (diff) | |
workspace assigns, disable DPI font scaling in apps on desktop
Diffstat (limited to 'hosts')
| -rw-r--r-- | hosts/lust/default.nix | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/hosts/lust/default.nix b/hosts/lust/default.nix index 53b2766..733c5d5 100644 --- a/hosts/lust/default.nix +++ b/hosts/lust/default.nix @@ -14,7 +14,21 @@ imports = [ ../../modules/user ]; desktop.windowManager = "swayfx"; home.stateVersion = lib.mkForce "23.05"; # homedir been around for a while - programs.vesktop.enable = true; + programs = { + foot.settings.main = { + dpi-aware = lib.mkForce false; # mismatched monitors + font = lib.mkForce "FiraCode Nerd Font Mono:size=11"; # why do things never work + }; + + fuzzel.settings.main = { + dpi-aware = lib.mkForce false; + font = lib.mkForce "Fira Code:size=11"; # aaaaa + }; + + iamb.enable = true; + vesktop.enable = true; + }; + }; networking.networkmanager.enable = true; |
