fix kmonad key bindings
This commit is contained in:
parent
da7a5bb935
commit
587a482b13
5 changed files with 25 additions and 7 deletions
|
@ -46,7 +46,7 @@
|
||||||
tab q w e r t y u i o p [ ] \
|
tab q w e r t y u i o p [ ] \
|
||||||
esc a s d f g h j k l ; ' ret
|
esc a s d f g h j k l ; ' ret
|
||||||
lsft z x c v b n m , . / rsft
|
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
|
(deflayer symbols
|
||||||
|
|
|
@ -22,6 +22,8 @@
|
||||||
|
|
||||||
./borg.nix
|
./borg.nix
|
||||||
./trilium.nix
|
./trilium.nix
|
||||||
|
|
||||||
|
./test.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
# stylix.base16Scheme = "${pkgs.base16-schemes}/share/themes/gruvbox-light-hard.yaml";
|
# stylix.base16Scheme = "${pkgs.base16-schemes}/share/themes/gruvbox-light-hard.yaml";
|
||||||
|
|
17
nixos/machines/cream/test.nix
Normal file
17
nixos/machines/cream/test.nix
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
{
|
||||||
|
|
||||||
|
|
||||||
|
virtualisation.oci-containers = {
|
||||||
|
containers.nginx = {
|
||||||
|
image = "nginx";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
systemd.services.podman-nginx = {
|
||||||
|
unitConfig = {
|
||||||
|
OnFailure = "echo oh noes!";
|
||||||
|
StartLimitBurst = 10;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
|
@ -20,7 +20,7 @@ in
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
systemd.services =
|
systemd.services.docker-screeps =
|
||||||
let
|
let
|
||||||
configuration = builtins.toJSON {
|
configuration = builtins.toJSON {
|
||||||
steamKey = "keyFromStep3";
|
steamKey = "keyFromStep3";
|
||||||
|
@ -41,11 +41,14 @@ in
|
||||||
tickRate = 1000;
|
tickRate = 1000;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
in
|
||||||
|
{
|
||||||
|
|
||||||
unitConfig = {
|
unitConfig = {
|
||||||
StartLimitInterval = 200;
|
StartLimitInterval = 200;
|
||||||
StartLimitBurst = 2;
|
StartLimitBurst = 2;
|
||||||
};
|
};
|
||||||
|
|
||||||
serviceConfig = {
|
serviceConfig = {
|
||||||
Restart = mkForce (if debug then "no" else "always");
|
Restart = mkForce (if debug then "no" else "always");
|
||||||
RestartSec = 30;
|
RestartSec = 30;
|
||||||
|
@ -59,10 +62,6 @@ in
|
||||||
''))
|
''))
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
in
|
|
||||||
{
|
|
||||||
podman-screeps = { inherit serviceConfig; };
|
|
||||||
docker-screeps = { inherit serviceConfig; };
|
|
||||||
};
|
};
|
||||||
|
|
||||||
#networking.firewall.allowedTCPPorts = [ 8123 ];
|
#networking.firewall.allowedTCPPorts = [ 8123 ];
|
||||||
|
|
Loading…
Reference in a new issue