feat(grfn/system): Add ogopogo
This is my new work desktop https://en.wikipedia.org/wiki/Ogopogo Change-Id: I198d8757ff85eec00a303b990efdd2658cbc3e6a Reviewed-on: https://cl.tvl.fyi/c/depot/+/5963 Tested-by: BuildkiteCI Reviewed-by: grfn <grfn@gws.fyi>
This commit is contained in:
parent
482e1b201c
commit
7ac9b76c3c
5 changed files with 151 additions and 0 deletions
68
users/grfn/system/home/machines/ogopogo.nix
Normal file
68
users/grfn/system/home/machines/ogopogo.nix
Normal file
|
|
@ -0,0 +1,68 @@
|
|||
{ pkgs, lib, config, ... }:
|
||||
|
||||
let
|
||||
inherit (builtins) pathExists;
|
||||
laptopKeyboardId = "5";
|
||||
in
|
||||
|
||||
{
|
||||
imports = [
|
||||
../platforms/linux.nix
|
||||
../modules/common.nix
|
||||
../modules/desktop.nix
|
||||
../modules/development/agda.nix
|
||||
../modules/development/readyset.nix
|
||||
] ++ (lib.optional (pathExists ../modules/private.nix) ../modules/private.nix);
|
||||
|
||||
programs.home-manager.enable = true;
|
||||
home.stateVersion = "21.11";
|
||||
|
||||
system.machine = {
|
||||
wirelessInterface = "wlp4s0";
|
||||
i3FontSize = 9;
|
||||
};
|
||||
|
||||
home.packages = with pkgs; [
|
||||
zoom-us
|
||||
slack
|
||||
mysql
|
||||
graphviz
|
||||
gnuplot
|
||||
mypaint
|
||||
xdot
|
||||
tdesktop
|
||||
subsurface
|
||||
discord
|
||||
steam
|
||||
];
|
||||
|
||||
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";
|
||||
|
||||
# Telegram adds this to ~/.config/mimeapps.list if it isn't already there,
|
||||
# preventing home manager from installing (since it doesn't want to overwrite
|
||||
# the file)
|
||||
xdg.mimeApps.defaultApplications."x-scheme-handler/tg" =
|
||||
"userapp-Telegram Desktop-K290F1.desktop";
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue