10 lines
190 B
Nix
10 lines
190 B
Nix
{ pkgs, ... }: {
|
|
imports = [
|
|
];
|
|
|
|
xsession.windowManager.i3 = {
|
|
config.startup = [
|
|
{ command = "xrandr --output HDMI-1 --mode 1920x1080 --rate 60 --primary"; }
|
|
];
|
|
};
|
|
}
|