diff options
| author | Akshay Nair <phenax5@gmail.com> | 2026-03-01 18:30:40 +0530 |
|---|---|---|
| committer | Akshay Nair <phenax5@gmail.com> | 2026-03-01 18:30:40 +0530 |
| commit | 0ae7cfc4746d7934fbea947388151b1818cdba87 (patch) | |
| tree | 6f4da7c4bdd387d43dbf5e2e443cdc8e772db660 | |
| parent | 636bcd508de1d0a06101d88435630cb1ad17a271 (diff) | |
| download | nixos-config-0ae7cfc4746d7934fbea947388151b1818cdba87.tar.gz nixos-config-0ae7cfc4746d7934fbea947388151b1818cdba87.zip | |
QMK udev rules
| -rw-r--r-- | config/zsh/paths.zsh | 4 | ||||
| -rw-r--r-- | hardware/thinkpad-e14/default.nix | 7 | ||||
| -rw-r--r-- | modules/mpv.home.nix | 6 |
3 files changed, 11 insertions, 6 deletions
diff --git a/config/zsh/paths.zsh b/config/zsh/paths.zsh index 9270ce2..9f2baa2 100644 --- a/config/zsh/paths.zsh +++ b/config/zsh/paths.zsh @@ -39,3 +39,7 @@ export REMINDER_FILE="$HOME/nixos/extras/notes/schedule/reminders.rem"; export DEV_DIR="$HOME/dev"; export PROJECTS_DIR="$DEV_DIR/projects"; +export ANSIBLE_HOME="$XDG_DATA_HOME/ansible" + +# QMK config home +export QMK_HOME="$HOME/.local/share/qmk_firmware/" diff --git a/hardware/thinkpad-e14/default.nix b/hardware/thinkpad-e14/default.nix index 7b75faa..2a8a9de 100644 --- a/hardware/thinkpad-e14/default.nix +++ b/hardware/thinkpad-e14/default.nix @@ -81,13 +81,14 @@ in { openocd zsa-udev-rules logitech-udev-rules + qmk-udev-rules ]; }; environment.systemPackages = with pkgs; [ mesa - xorg.xf86inputlibinput - # xorg.xf86videointel + xf86inputlibinput + # xf86videointel ]; services.xserver.videoDrivers = [ "modesetting" ]; @@ -151,5 +152,5 @@ in { cpuFreqGovernor = "powersave"; }; - # services.tlp.enable = lib.mkDefault false; + services.tlp.enable = false; } diff --git a/modules/mpv.home.nix b/modules/mpv.home.nix index c6f0a1b..51a4370 100644 --- a/modules/mpv.home.nix +++ b/modules/mpv.home.nix @@ -19,9 +19,9 @@ scripts = with pkgs.mpvScripts; [ uosc - videoclip # c to clip - youtube-upnext # <c-u> to show menu - mpv-cheatsheet # ? to see hints + # videoclip # c to clip + # youtube-upnext # <c-u> to show menu + # mpv-cheatsheet # ? to see hints # webtorrent-mpv-hook ]; |
