From 6f97bf82c12c28e1ec33a2696e0cb8e98b48e3a4 Mon Sep 17 00:00:00 2001 From: 4Lost Date: Sun, 3 Mar 2024 17:57:39 +0100 Subject: [PATCH] =?UTF-8?q?xrandr=20-=20autocommand=20f=C3=BCr=20TV?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- home/programs/zsh/default.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/home/programs/zsh/default.nix b/home/programs/zsh/default.nix index 92543e9..e92412c 100644 --- a/home/programs/zsh/default.nix +++ b/home/programs/zsh/default.nix @@ -6,7 +6,11 @@ programs.zsh = { enable = true; dotDir = ".config/zsh"; - shellAliases = { update = "sudo nixos-rebuild switch"; }; + shellAliases = { + update = "sudo nixos-rebuild switch"; + addTV = + "xrandr --output eDP-1 --auto --output HDMI-1 --mode 1920x1080 --right-of eDP-1"; + }; enableAutosuggestions = true; enableCompletion = true; enableVteIntegration = true;