From cb0703f3595f8310e2c77ac5b5fa1542793d175f Mon Sep 17 00:00:00 2001 From: Lauren Lagarde Date: Sun, 27 Jul 2025 22:35:38 -0500 Subject: [PATCH] Remove Dell Precision 5470 configuration --- systems/ll-precision-5470/home.nix | 69 ------------------------------ 1 file changed, 69 deletions(-) delete mode 100644 systems/ll-precision-5470/home.nix diff --git a/systems/ll-precision-5470/home.nix b/systems/ll-precision-5470/home.nix deleted file mode 100644 index f7292c4..0000000 --- a/systems/ll-precision-5470/home.nix +++ /dev/null @@ -1,69 +0,0 @@ -{ pkgs, ... }: { - home.packages = with pkgs; [ - alsa-utils - ]; - - home.file = { - "precision/fixmicrophone" = { - executable = true; - text = '' - # https://github.com/NixOS/nixpkgs/issues/294170 - sudo ln -s /run/current-system/sw/bin/rm /bin - sudo ln -s /run/current-system/sw/bin/mkdir /bin - - # https://discourse.nixos.org/t/dell-xps-13-9320-microphone-not-working/40932/3 - sudo alsactl init - systemctl --user restart pipewire - ''; - }; - - "precision/home" = { - executable = true; - text = '' - xrandr \ - --output DP-4-3 --mode 3840x2160 --rate 30 --primary \ - --output DP-4-1 --mode 3840x2160 --rate 30 --right-of DP-4-3 \ - --output eDP-1 --off - i3-msg restart - ''; - }; - "precision/office" = { - executable = true; - text = '' - xrandr \ - --output DP-2-2 --mode 3840x2160 --rate 30 --primary \ - --output DP-2-1 --mode 3840x2160 --rate 30 --right-of DP-2-2 \ - --output eDP-1 --off - i3-msg restart - ''; - }; - "precision/backward" = { - executable = true; - text = '' - xrandr \ - --output eDP-1 --mode 1920x1200 \ - --output DP-2 --mode 3840x2160 --rate 30 --primary --right-of eDP-1 - i3-msg restart - ''; - }; - "precision/standalone" = { - executable = true; - text = '' - xrandr \ - --output eDP-1 --mode 1920x1200 --primary \ - --output DP-1 --off \ - --output DP-2 --off \ - --output DP-3 --off \ - --output DP-4 --off \ - --output DP-5 --off \ - --output DP-2-1 --off \ - --output DP-2-2 --off \ - --output DP-2-3 --off \ - --output DP-4-1 --off \ - --output DP-4-2 --off \ - --output DP-4-3 --off - i3-msg restart - ''; - }; - }; -}