Initial release

This commit is contained in:
Lauren Lagarde 2025-03-03 23:07:58 -06:00
commit 8fbb25bbac
53 changed files with 1648 additions and 0 deletions

View file

@ -0,0 +1,14 @@
{ ... }: {
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"; }
];
};
};
}