Move services into their own file and enbale syncthing
This commit is contained in:
parent
5582cd6ad9
commit
aa22049e91
3 changed files with 83 additions and 54 deletions
80
nixos/services.nix
Normal file
80
nixos/services.nix
Normal file
|
@ -0,0 +1,80 @@
|
|||
{
|
||||
config,
|
||||
pkgs,
|
||||
unstable,
|
||||
inputs,
|
||||
...
|
||||
}:
|
||||
|
||||
{
|
||||
|
||||
services = {
|
||||
openssh.enable = true;
|
||||
flatpak.enable = true;
|
||||
pcscd.enable = true;
|
||||
|
||||
sunshine = {
|
||||
enable = true;
|
||||
autoStart = true;
|
||||
capSysAdmin = true;
|
||||
openFirewall = true;
|
||||
};
|
||||
|
||||
ucodenix = {
|
||||
enable = true;
|
||||
# cpuModelId = "00A20F12"; # AMD 5900X
|
||||
};
|
||||
|
||||
syncthing = {
|
||||
enable = true;
|
||||
group = "BuyMyAria";
|
||||
user = "BuyMyAria";
|
||||
dataDir = "/home/myusername/Documents/Syncthing"; # Default folder for new synced folders
|
||||
configDir = "/home/myusername/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";
|
||||
# };
|
||||
# };
|
||||
# };
|
||||
# };
|
||||
};
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue