Compare commits

..

No commits in common. "9e2914d0dc03be454063adc940a4f09d26a1b4aa" and "04f1310c0a68aa7912c6fd175c2c441bd6b3cc89" have entirely different histories.

2 changed files with 49 additions and 55 deletions

View file

@ -175,9 +175,9 @@
programs.steam = { programs.steam = {
enable = true; enable = true;
package = pkgs.steam.override { package = pkgs.steam.override {
extraPkgs = (pkgs: with pkgs; with unstable; [ extraPkgs = (pkgs: with pkgs; [
gamemode gamemode
unstable.mangohud mangohud
# additional packages... # additional packages...
# e.g. some games require python3 # e.g. some games require python3
]); ]);

View file

@ -8,15 +8,6 @@
{ {
systemd.services.jellyfin-rpc = {
enable = disable;
path = [ pkgs.jellyfin-rpc ];
serviceConfig = {
User = "buymymojo";
ExecStart = "${pkgs.nix}/bin/nix run nixpkgs#jellyfin-rpc";
};
};
services = { services = {
openssh.enable = true; openssh.enable = true;
flatpak.enable = true; flatpak.enable = true;
@ -35,52 +26,55 @@
}; };
syncthing = { syncthing = {
enable = true; enable = true;
group = "users"; group = "users";
user = "buymymojo"; user = "buymymojo";
dataDir = "/home/buymymojo/Documents/Syncthing"; # Default folder for new synced folders dataDir = "/home/buymymojo/Documents/Syncthing"; # Default folder for new synced folders
configDir = "/home/buymymojo/Documents/.config/syncthing"; # Folder for Syncthing's settings and keys 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. # services.blocky = {
# upstreams.groups.default = [ # enable = true;
# "https://one.one.one.one/dns-query" # Using Cloudflare's DNS over HTTPS server for resolving queries. # settings = {
# ]; # ports.dns = 53; # Port for incoming DNS Queries.
# # For initially solving DoH/DoT Requests when no system Resolver is available. # upstreams.groups.default = [
# bootstrapDns = { # "https://one.one.one.one/dns-query" # Using Cloudflare's DNS over HTTPS server for resolving queries.
# upstream = "https://one.one.one.one/dns-query"; # ];
# ips = [ "1.1.1.1" "1.0.0.1" ]; # # For initially solving DoH/DoT Requests when no system Resolver is available.
# }; # bootstrapDns = {
# #Enable Blocking of certian domains. # upstream = "https://one.one.one.one/dns-query";
# blocking = { # ips = [ "1.1.1.1" "1.0.0.1" ];
# blackLists = { # };
# #Adblocking # #Enable Blocking of certian domains.
# ads = [ # blocking = {
# "https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts" # blackLists = {
# "https://adaway.org/hosts.txt" # #Adblocking
# "https://v.firebog.net/hosts/AdguardDNS.txt" # ads = [
# ]; # "https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts"
# #Another filter for blocking adult sites # "https://adaway.org/hosts.txt"
# adult = ["https://blocklistproject.github.io/Lists/porn.txt"]; # "https://v.firebog.net/hosts/AdguardDNS.txt"
# #You can add additional categories # ];
# }; # #Another filter for blocking adult sites
# #Configure what block categories are used # adult = ["https://blocklistproject.github.io/Lists/porn.txt"];
# clientGroupsBlock = { # #You can add additional categories
# default = [ "ads" ]; # };
# # kids-ipad = ["ads" "adult"]; # #Configure what block categories are used
# }; # clientGroupsBlock = {
# }; # default = [ "ads" ];
# customDNS = { # # kids-ipad = ["ads" "adult"];
# customTTL = "1h"; # };
# mapping = { # };
# "upload.aria.coffee" = "192.168.20.2"; # customDNS = {
# }; # customTTL = "1h";
# }; # mapping = {
# }; # "upload.aria.coffee" = "192.168.20.2";
# }; # };
# };
# };
# };
}; };
} }