fix kmonad key bindings

This commit is contained in:
Ingolf Wagner 2023-07-09 00:51:45 +02:00
parent da7a5bb935
commit 587a482b13
Signed by: palo
GPG key ID: 76BF5F1928B9618B
5 changed files with 25 additions and 7 deletions

View file

@ -46,7 +46,7 @@
tab q w e r t y u i o p [ ] \
esc a s d f g h j k l ; ' ret
lsft z x c v b n m , . / rsft
lctl lalt lmet spc @sym rmet cmp rctrl
lctl lmet lalt spc @sym rmet cmp rctrl
)
(deflayer symbols

View file

@ -22,6 +22,8 @@
./borg.nix
./trilium.nix
./test.nix
];
# stylix.base16Scheme = "${pkgs.base16-schemes}/share/themes/gruvbox-light-hard.yaml";

View file

@ -0,0 +1,17 @@
{
virtualisation.oci-containers = {
containers.nginx = {
image = "nginx";
};
};
systemd.services.podman-nginx = {
unitConfig = {
OnFailure = "echo oh noes!";
StartLimitBurst = 10;
};
};
}

View file

@ -14,7 +14,7 @@
./hetzner.nix
# ./screeps.nix
#./screeps.nix
./borg.nix
./codimd.nix

View file

@ -20,7 +20,7 @@ in
};
};
systemd.services =
systemd.services.docker-screeps =
let
configuration = builtins.toJSON {
steamKey = "keyFromStep3";
@ -41,11 +41,14 @@ in
tickRate = 1000;
};
};
in
{
unitConfig = {
StartLimitInterval = 200;
StartLimitBurst = 2;
};
serviceConfig = {
Restart = mkForce (if debug then "no" else "always");
RestartSec = 30;
@ -59,10 +62,6 @@ in
''))
];
};
in
{
podman-screeps = { inherit serviceConfig; };
docker-screeps = { inherit serviceConfig; };
};
#networking.firewall.allowedTCPPorts = [ 8123 ];