Mostly UI tweaks, plus some refactoring

This commit is contained in:
Lauren Lagarde 2025-03-11 22:35:04 -05:00
parent 110fa225d4
commit 2d878c3448
5 changed files with 47 additions and 29 deletions

View file

@ -1,6 +1,36 @@
#{ pkgs, pkgs-unstable, ... }: {
{ pkgs, ... }: {
nixpkgs.config.allowUnfree = true;
{ pkgs, ... }: {
home.file = {
"latitude/tv" = {
executable = true;
text = ''
xrandr \
--output eDP-1 --mode 1920x1080 --primary \
--output DP-2-2 --mode 1920x1080
'';
};
"latitude/desk" = {
executable = true;
text = ''
xrandr \
--output eDP-1 --off \
--output DP-2-1 --mode 3840x2160 --rate 30 --right-of DP-2-2 \
--output DP-2-2 --mode 3840x2160 --rate 30 --primary
i3-msg restart
'';
};
"latitude/standalone" = {
executable = true;
text = ''
xrandr \
--output eDP-1 --mode 1920x1080 --primary \
--output DP-2-1 --off \
--output DP-2-2 --off \
--output DP-2-3 --off
i3-msg restart
'';
};
};
home.packages = with pkgs; [
# TODO: Polybar Stuff