|
{ ... }: {
|
|
imports = [
|
|
../ll-nixos-full.nix
|
|
];
|
|
|
|
# Fix issue with HDMI passthrough
|
|
home-manager.users.lauren_lagarde = {
|
|
xsession.windowManager.i3 = {
|
|
config.startup = [
|
|
{ command = "xrandr --output HDMI-1 --mode 1920x1080 --rate 60 --primary"; }
|
|
];
|
|
};
|
|
};
|
|
}
|