Compare commits
3 commits
04f1310c0a
...
9e2914d0dc
Author | SHA1 | Date | |
---|---|---|---|
|
9e2914d0dc | ||
|
5d33cecfe6 | ||
|
728940b490 |
2 changed files with 55 additions and 49 deletions
|
@ -175,9 +175,9 @@
|
|||
programs.steam = {
|
||||
enable = true;
|
||||
package = pkgs.steam.override {
|
||||
extraPkgs = (pkgs: with pkgs; [
|
||||
extraPkgs = (pkgs: with pkgs; with unstable; [
|
||||
gamemode
|
||||
mangohud
|
||||
unstable.mangohud
|
||||
# additional packages...
|
||||
# e.g. some games require python3
|
||||
]);
|
||||
|
|
|
@ -8,6 +8,15 @@
|
|||
|
||||
{
|
||||
|
||||
systemd.services.jellyfin-rpc = {
|
||||
enable = disable;
|
||||
path = [ pkgs.jellyfin-rpc ];
|
||||
serviceConfig = {
|
||||
User = "buymymojo";
|
||||
ExecStart = "${pkgs.nix}/bin/nix run nixpkgs#jellyfin-rpc";
|
||||
};
|
||||
};
|
||||
|
||||
services = {
|
||||
openssh.enable = true;
|
||||
flatpak.enable = true;
|
||||
|
@ -26,55 +35,52 @@
|
|||
};
|
||||
|
||||
syncthing = {
|
||||
enable = true;
|
||||
group = "users";
|
||||
user = "buymymojo";
|
||||
dataDir = "/home/buymymojo/Documents/Syncthing"; # Default folder for new synced folders
|
||||
configDir = "/home/buymymojo/Documents/.config/syncthing"; # Folder for Syncthing's settings and keys
|
||||
enable = true;
|
||||
group = "users";
|
||||
user = "buymymojo";
|
||||
dataDir = "/home/buymymojo/Documents/Syncthing"; # Default folder for new synced folders
|
||||
configDir = "/home/buymymojo/Documents/.config/syncthing"; # Folder for Syncthing's settings and keys
|
||||
};
|
||||
|
||||
|
||||
|
||||
|
||||
# services.blocky = {
|
||||
# enable = true;
|
||||
# settings = {
|
||||
# ports.dns = 53; # Port for incoming DNS Queries.
|
||||
# upstreams.groups.default = [
|
||||
# "https://one.one.one.one/dns-query" # Using Cloudflare's DNS over HTTPS server for resolving queries.
|
||||
# ];
|
||||
# # For initially solving DoH/DoT Requests when no system Resolver is available.
|
||||
# bootstrapDns = {
|
||||
# upstream = "https://one.one.one.one/dns-query";
|
||||
# ips = [ "1.1.1.1" "1.0.0.1" ];
|
||||
# };
|
||||
# #Enable Blocking of certian domains.
|
||||
# blocking = {
|
||||
# blackLists = {
|
||||
# #Adblocking
|
||||
# ads = [
|
||||
# "https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts"
|
||||
# "https://adaway.org/hosts.txt"
|
||||
# "https://v.firebog.net/hosts/AdguardDNS.txt"
|
||||
# ];
|
||||
# #Another filter for blocking adult sites
|
||||
# adult = ["https://blocklistproject.github.io/Lists/porn.txt"];
|
||||
# #You can add additional categories
|
||||
# };
|
||||
# #Configure what block categories are used
|
||||
# clientGroupsBlock = {
|
||||
# default = [ "ads" ];
|
||||
# # kids-ipad = ["ads" "adult"];
|
||||
# };
|
||||
# };
|
||||
# customDNS = {
|
||||
# customTTL = "1h";
|
||||
# mapping = {
|
||||
# "upload.aria.coffee" = "192.168.20.2";
|
||||
# };
|
||||
# };
|
||||
# };
|
||||
# };
|
||||
# services.blocky = {
|
||||
# enable = true;
|
||||
# settings = {
|
||||
# ports.dns = 53; # Port for incoming DNS Queries.
|
||||
# upstreams.groups.default = [
|
||||
# "https://one.one.one.one/dns-query" # Using Cloudflare's DNS over HTTPS server for resolving queries.
|
||||
# ];
|
||||
# # For initially solving DoH/DoT Requests when no system Resolver is available.
|
||||
# bootstrapDns = {
|
||||
# upstream = "https://one.one.one.one/dns-query";
|
||||
# ips = [ "1.1.1.1" "1.0.0.1" ];
|
||||
# };
|
||||
# #Enable Blocking of certian domains.
|
||||
# blocking = {
|
||||
# blackLists = {
|
||||
# #Adblocking
|
||||
# ads = [
|
||||
# "https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts"
|
||||
# "https://adaway.org/hosts.txt"
|
||||
# "https://v.firebog.net/hosts/AdguardDNS.txt"
|
||||
# ];
|
||||
# #Another filter for blocking adult sites
|
||||
# adult = ["https://blocklistproject.github.io/Lists/porn.txt"];
|
||||
# #You can add additional categories
|
||||
# };
|
||||
# #Configure what block categories are used
|
||||
# clientGroupsBlock = {
|
||||
# default = [ "ads" ];
|
||||
# # kids-ipad = ["ads" "adult"];
|
||||
# };
|
||||
# };
|
||||
# customDNS = {
|
||||
# customTTL = "1h";
|
||||
# mapping = {
|
||||
# "upload.aria.coffee" = "192.168.20.2";
|
||||
# };
|
||||
# };
|
||||
# };
|
||||
# };
|
||||
};
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue