mirror of
https://git.sr.ht/~rouven/nixos-config
synced 2024-11-15 05:13:10 +01:00
use trucksimulator's default listenport
This commit is contained in:
parent
1cfc7a2078
commit
4e39998ac1
12
flake.lock
12
flake.lock
|
@ -75,11 +75,11 @@
|
||||||
"xdph": "xdph"
|
"xdph": "xdph"
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1685346756,
|
"lastModified": 1685380658,
|
||||||
"narHash": "sha256-pZNHeNkBBgi5o2DOT1T8MPHnrpJN+eEfYeqdg2ASjZA=",
|
"narHash": "sha256-LPih0Q//p8IurXG9kGRVGAqV4AUKVYj9xkk3sYYAj6I=",
|
||||||
"owner": "hyprwm",
|
"owner": "hyprwm",
|
||||||
"repo": "Hyprland",
|
"repo": "Hyprland",
|
||||||
"rev": "b3a86952cf14b6f556159eb898eaa7b6ceac4335",
|
"rev": "51a930f802c71a0e67f05e7b176ded74e8e95f87",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
@ -362,11 +362,11 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1685363327,
|
"lastModified": 1685393793,
|
||||||
"narHash": "sha256-LmuiCTrl+RtUg5bV3MjsWaa2RnWzMLaefPGJUe48piU=",
|
"narHash": "sha256-1cr3WVsmN0aAkQeUK+4BOiOynwFtFqBD21G4JlB9l+A=",
|
||||||
"owner": "therealr5",
|
"owner": "therealr5",
|
||||||
"repo": "TruckSimulatorBot",
|
"repo": "TruckSimulatorBot",
|
||||||
"rev": "7b7cd1e2b1834c1cfc374cfea1485c5f56d3b481",
|
"rev": "3e2c57c891e21962169066efb84ab6d8042d30b0",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|
|
@ -5,7 +5,6 @@ in
|
||||||
{
|
{
|
||||||
services.trucksimulatorbot = {
|
services.trucksimulatorbot = {
|
||||||
enable = true;
|
enable = true;
|
||||||
listenPort = 9033;
|
|
||||||
discord = {
|
discord = {
|
||||||
clientId = "831052837353816066";
|
clientId = "831052837353816066";
|
||||||
publicKey = "faa7004a2a5096702f96f3ebeb45c7e8272c119b72c1a0894abc4d76d8cc8bad";
|
publicKey = "faa7004a2a5096702f96f3ebeb45c7e8272c119b72c1a0894abc4d76d8cc8bad";
|
||||||
|
|
|
@ -290,6 +290,6 @@ in
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
home.file.".urlview".text = ''
|
home.file.".urlview".text = ''
|
||||||
COMMAND qutebrowser %s &> /dev/null
|
COMMAND ${pkgs.xdg-utils}/bin/xdg-open %s &> /dev/null
|
||||||
'';
|
'';
|
||||||
}
|
}
|
||||||
|
|
|
@ -8,7 +8,6 @@
|
||||||
./helix
|
./helix
|
||||||
./hyprland
|
./hyprland
|
||||||
./mpv
|
./mpv
|
||||||
./qutebrowser
|
|
||||||
./sops
|
./sops
|
||||||
./spotify
|
./spotify
|
||||||
./ssh
|
./ssh
|
||||||
|
|
|
@ -1,39 +0,0 @@
|
||||||
{ ... }:
|
|
||||||
{
|
|
||||||
programs.qutebrowser = {
|
|
||||||
enable = true;
|
|
||||||
searchEngines = {
|
|
||||||
DEFAULT = "https://duckduckgo.com/?q={}";
|
|
||||||
aw = "https://wiki.archlinux.org/?search={}";
|
|
||||||
nw = "https://nixos.wiki/index.php?search={}";
|
|
||||||
wp = "https://en.wikipedia.org/wiki/Special:Search?search={}";
|
|
||||||
y = "http://localhost:8090/yacysearch.html?query={}";
|
|
||||||
yt = "https://www.youtube.com/results?search_query={}";
|
|
||||||
g = "https://www.google.com/search?hl=en&q={}";
|
|
||||||
};
|
|
||||||
quickmarks = {
|
|
||||||
nix-search = "https://search.nixos.org/options?";
|
|
||||||
home-search = "https://mipmip.github.io/home-manager-option-search/";
|
|
||||||
jexam = "https://jexam.inf.tu-dresden.de";
|
|
||||||
opal = "https://bildungsportal.sachsen.de/opal/home?2";
|
|
||||||
fruitbasket = "https://github.com/fsr/fruitbasket";
|
|
||||||
};
|
|
||||||
keyBindings = {
|
|
||||||
normal = {
|
|
||||||
"<Ctrl-m>" = "hint links spawn mpv {hint-url}";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
settings = {
|
|
||||||
colors.webpage = {
|
|
||||||
darkmode.enabled = false;
|
|
||||||
preferred_color_scheme = "dark";
|
|
||||||
};
|
|
||||||
content.blocking = {
|
|
||||||
enabled = true;
|
|
||||||
method = "both";
|
|
||||||
};
|
|
||||||
statusbar.show = "in-mode";
|
|
||||||
tabs.show = "switching";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
Loading…
Reference in a new issue