diff options
author | Patryk Niedźwiedziński <pniedzwiedzinski19@gmail.com> | 2021-01-11 10:53:45 +0100 |
---|---|---|
committer | Patryk Niedźwiedziński <pniedzwiedzinski19@gmail.com> | 2021-01-11 10:53:45 +0100 |
commit | ee8378fb4a312d1adc6d5293948dc44595f47c53 (patch) | |
tree | 60b5607eec43f1afa07d0b8ffcdeab2912966a95 /machines/asus/configuration.nix | |
parent | b37bf9cfec02f49dbaa24ec51181eee28a283ec0 (diff) | |
download | dots-ee8378fb4a312d1adc6d5293948dc44595f47c53.tar.gz dots-ee8378fb4a312d1adc6d5293948dc44595f47c53.zip |
Add asus-t100ha
Diffstat (limited to 'machines/asus/configuration.nix')
-rwxr-xr-x | machines/asus/configuration.nix | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/machines/asus/configuration.nix b/machines/asus/configuration.nix new file mode 100755 index 0000000..444f9f0 --- /dev/null +++ b/machines/asus/configuration.nix @@ -0,0 +1,42 @@ +{ config, pkgs, ... }: + +{ + + 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 + ]; + + 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" + ''; + }; + +} |