diff options
author | Patryk Niedzwiedzinski <patryk@niedzwiedzinski.cyou> | 2024-09-29 16:23:16 +0200 |
---|---|---|
committer | Patryk Niedzwiedzinski <patryk@niedzwiedzinski.cyou> | 2024-09-29 16:23:16 +0200 |
commit | 4f591cc9c9663c413e8eb5cd8401a34a3251e30c (patch) | |
tree | dc46f698af4d5ba288e9e6707c2bc960e913bdd8 /machines/asus/configuration.nix | |
parent | 4fa1a6efad786affb0729603de846d2034580db2 (diff) | |
download | dots-4f591cc9c9663c413e8eb5cd8401a34a3251e30c.tar.gz dots-4f591cc9c9663c413e8eb5cd8401a34a3251e30c.zip |
Remove old machines
Diffstat (limited to 'machines/asus/configuration.nix')
-rwxr-xr-x | machines/asus/configuration.nix | 50 |
1 files changed, 0 insertions, 50 deletions
diff --git a/machines/asus/configuration.nix b/machines/asus/configuration.nix deleted file mode 100755 index a64f9d2..0000000 --- a/machines/asus/configuration.nix +++ /dev/null @@ -1,50 +0,0 @@ -{ config, pkgs, ... }: -let - screen-orient = pkgs.writeScriptBin "screen-orient" '' - #!${pkgs.stdenv.shell} - xrandr --output DSI1 --primary --mode 800x1280 --pos 0x0 --rotate left --output DP1 --off --output HDMI1 --off - -xinput set-prop "SIS0457:00 0457:113D" "Coordinate Transformation Matrix" 0 -1 1 1 0 0 0 0 1 - ''; -in -{ - - imports = [ - ../base.nix - ../pl.nix - ../../modules/larbs.nix - ../../modules/trackpad.nix - ]; - - networking = { - hostName = "asus-t100"; - - networkmanager = { - enable = true; - wifi.backend = "iwd"; - }; - }; - - - environment.systemPackages = with pkgs; [ - libimobiledevice - screen-orient - ]; - - services.usbmuxd.enable = true; - - services.acpid.enable = true; - - # Battery - services.tlp.enable = true; - - services.xserver = { - videoDrivers = [ "intel" ]; - deviceSection = '' - Option "Backlight" "intel_backlight" - Option "DIR" "2" - Option "TearFree" "true" - ''; - }; - -} |