made things compatible for 4k screen

This commit is contained in:
2024-02-07 15:14:13 +01:00
parent 44e6b01d19
commit 8a2319cf95
2 changed files with 34 additions and 11 deletions

26
gridlock.nix Normal file
View File

@@ -0,0 +1,26 @@
{ config, pkgs, lib, ... }:
{
home.packages = with pkgs; [
darktable
];
programs.i3status.modules = lib.mkForce {
"volume master".position = 1;
"wireless wlp6s0" = {
position = 2;
settings = {
format_up = "%essid %bitrate";
format_down = "down";
};
};
"time" = {
position = 4;
settings = {
format = "%a, %d.%m.%Y - %H:%M ";
};
};
};
xsession.windowManager.i3.extraConfig = ''
exec xrandr --output DisplayPort-0 --scale 0.75x0.75
'';
}