parent
0865c62fe4
commit
4a85d9074a
6 changed files with 12 additions and 8 deletions
|
@ -41,7 +41,8 @@ in
|
||||||
extraConfig.url = {
|
extraConfig.url = {
|
||||||
"ssh://git@github.com/".insteadOf = "https://github.com/";
|
"ssh://git@github.com/".insteadOf = "https://github.com/";
|
||||||
# Workaround for https://github.com/rust-lang/cargo/issues/3381#issuecomment-1193730972
|
# Workaround for https://github.com/rust-lang/cargo/issues/3381#issuecomment-1193730972
|
||||||
"https://github.com/rust-lang/crates.io-index".insteadOf = "https://github.com/rust-lang/crates.io-index";
|
"https://github.com/rust-lang/crates.io-index".insteadOf =
|
||||||
|
"https://github.com/rust-lang/crates.io-index";
|
||||||
"https://github.com/RustSec/advisory-db".insteadOf = "https://github.com/RustSec/advisory-db";
|
"https://github.com/RustSec/advisory-db".insteadOf = "https://github.com/RustSec/advisory-db";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -36,7 +36,8 @@ in
|
||||||
",l" = ''config-cycle spellcheck.languages [" it-IT "] [" en-US "]'';
|
",l" = ''config-cycle spellcheck.languages [" it-IT "] [" en-US "]'';
|
||||||
};
|
};
|
||||||
insert = {
|
insert = {
|
||||||
"<Ctrl-p>" = ''spawn --userscript qute-pass --dmenu-invocation '${pkgs.fuzzel}/bin/fuzzel --background-color=253559cc --border-radius=5 --border-width=0 -d' --password-only --unfiltered'';
|
"<Ctrl-p>" =
|
||||||
|
''spawn --userscript qute-pass --dmenu-invocation '${pkgs.fuzzel}/bin/fuzzel --background-color=253559cc --border-radius=5 --border-width=0 -d' --password-only --unfiltered'';
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
settings = {
|
settings = {
|
||||||
|
|
|
@ -110,7 +110,8 @@
|
||||||
in
|
in
|
||||||
lib.mkOptionDefault {
|
lib.mkOptionDefault {
|
||||||
"${modifier}+x" = "exec emacsclient -c";
|
"${modifier}+x" = "exec emacsclient -c";
|
||||||
"${modifier}+y" = "exec ${pkgs.waypipe}/bin/waypipe --compress lz4=10 ssh mothership.fleet emacsclient -c";
|
"${modifier}+y" =
|
||||||
|
"exec ${pkgs.waypipe}/bin/waypipe --compress lz4=10 ssh mothership.fleet emacsclient -c";
|
||||||
"${modifier}+b" = "exec qutebrowser";
|
"${modifier}+b" = "exec qutebrowser";
|
||||||
"${modifier}+s" = "exec ${screenshotScript}";
|
"${modifier}+s" = "exec ${screenshotScript}";
|
||||||
# "${modifier}+g" = "exec ${screenrecordingScript}"; # FIXME
|
# "${modifier}+g" = "exec ${screenrecordingScript}"; # FIXME
|
||||||
|
|
|
@ -83,7 +83,8 @@ in
|
||||||
"git.aciceri.dev" = {
|
"git.aciceri.dev" = {
|
||||||
enableACME = true;
|
enableACME = true;
|
||||||
forceSSL = true;
|
forceSSL = true;
|
||||||
locations."/".proxyPass = "http://127.0.0.1:${builtins.toString config.services.forgejo.settings.server.HTTP_PORT}";
|
locations."/".proxyPass =
|
||||||
|
"http://127.0.0.1:${builtins.toString config.services.forgejo.settings.server.HTTP_PORT}";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -29,7 +29,8 @@ in
|
||||||
"matrix.aciceri.dev" = {
|
"matrix.aciceri.dev" = {
|
||||||
forceSSL = true;
|
forceSSL = true;
|
||||||
enableACME = true;
|
enableACME = true;
|
||||||
locations."/".proxyPass = "http://127.0.0.1:${builtins.toString (lib.head config.services.matrix-synapse.settings.listeners).port}";
|
locations."/".proxyPass =
|
||||||
|
"http://127.0.0.1:${builtins.toString (lib.head config.services.matrix-synapse.settings.listeners).port}";
|
||||||
locations."/_matrix".proxyPass = "http://localhost:8008";
|
locations."/_matrix".proxyPass = "http://localhost:8008";
|
||||||
locations."/_synapse/client".proxyPass = "http://localhost:8008";
|
locations."/_synapse/client".proxyPass = "http://localhost:8008";
|
||||||
};
|
};
|
||||||
|
|
|
@ -24,9 +24,8 @@ in
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
services.openssh.knownHosts."${
|
services.openssh.knownHosts."${host}".publicKey =
|
||||||
host
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIICf9svRenC/PLKIL9nk6K/pxQgoiFC41wTNvoIncOxs";
|
||||||
}".publicKey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIICf9svRenC/PLKIL9nk6K/pxQgoiFC41wTNvoIncOxs";
|
|
||||||
|
|
||||||
services.postgresqlBackup = {
|
services.postgresqlBackup = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
Loading…
Add table
Reference in a new issue