2020-11-30 00:59:26 +01:00
|
|
|
{ pkgs, lib, config, ... }:
|
|
|
|
|
2020-12-01 17:57:23 +01:00
|
|
|
let
|
|
|
|
laptopKeyboardId = "5";
|
|
|
|
in
|
|
|
|
|
2020-11-30 00:59:26 +01:00
|
|
|
{
|
|
|
|
imports = [
|
|
|
|
../platforms/linux.nix
|
|
|
|
../modules/common.nix
|
|
|
|
];
|
|
|
|
|
|
|
|
# for when hacking
|
|
|
|
programs.home-manager.enable = true;
|
|
|
|
home.stateVersion = "20.03";
|
|
|
|
|
|
|
|
system.machine = {
|
|
|
|
wirelessInterface = "wlp0s20f3";
|
|
|
|
i3FontSize = 9;
|
|
|
|
};
|
2020-12-01 17:57:23 +01:00
|
|
|
|
|
|
|
home.packages = with pkgs; [
|
|
|
|
zoom-us
|
|
|
|
slack
|
|
|
|
];
|
|
|
|
|
|
|
|
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"
|
|
|
|
);
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
xsession.windowManager.i3.config.keybindings.F9 = "exec lock";
|
2020-11-30 00:59:26 +01:00
|
|
|
}
|