about summary refs log blame commit diff
path: root/home/machines/chupacabra.nix
blob: 86be9b361ddff5c927f48945a5c87f9464878a0b (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11



                          






                          



                                  





















                                                                                               
 
{ pkgs, ... }:
let
  laptopKeyboardId = "25";
in {
  imports = [
    ../platforms/linux.nix

    ../modules/common.nix
    ../modules/games.nix
  ];

  system.machine = {
    wirelessInterface = "wlp59s0";
    i3FontSize = 9;
  };

  systemd.user.services.laptop-keyboard = {
    Unit = {
      Description = "Swap caps+escape and alt+super, but only on the built-in laptop keyboard";
      After = [ "graphical-session-pre.target" ];
      PartOf = [ "graphical-session.target" ];
    };

    Install = { WantedBy = [ "graphical-session.target" ]; };

    Service = {
      Type = "oneshot";
      RemainAfterExit = true;
      ExecStart = (
        "${pkgs.xorg.setxkbmap}/bin/setxkbmap "
          + "-device ${laptopKeyboardId} "
          + "-option caps:swapescape "
          + "-option compose:ralt "
          + "-option altwin:swap_alt_win"
      );
    };
  };
}