tin vip vai lon
This commit is contained in:
parent
5760ed4067
commit
4737199992
10 changed files with 148 additions and 110 deletions
|
|
@ -2,109 +2,15 @@
|
|||
{
|
||||
imports = [
|
||||
./programs.nix
|
||||
./service.nix
|
||||
./services.nix
|
||||
./networking.nix
|
||||
|
||||
(libs.root "/modules/features/system/docker.nix")
|
||||
(libs.root "/modules/features/system/packages.nix")
|
||||
|
||||
(libs.root "/home/asakiyuki/configuration.nix")
|
||||
(libs.root "/home/junko/configuration.nix")
|
||||
|
||||
(libs.root "/options/system/default.nix")
|
||||
];
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
git
|
||||
vim
|
||||
];
|
||||
|
||||
users.users.junko = {
|
||||
isNormalUser = true;
|
||||
};
|
||||
|
||||
services = {
|
||||
|
||||
fail2ban = {
|
||||
enable = true;
|
||||
ignoreIP = [
|
||||
"192.168.0.0/16"
|
||||
];
|
||||
};
|
||||
|
||||
cloudflare-dyndns = {
|
||||
enable = true;
|
||||
apiTokenFile = "/home/asakiyuki/.secret/CLOUDFLARE_TOKEN_KEY";
|
||||
frequency = "*:0/5";
|
||||
proxied = true;
|
||||
ipv6 = false;
|
||||
ipv4 = true;
|
||||
deleteMissing = false;
|
||||
domains = [ "ddns.asakiyuki.com" ];
|
||||
};
|
||||
|
||||
openssh = {
|
||||
enable = true;
|
||||
ports = [ 15523 ];
|
||||
authorizedKeysInHomedir = true;
|
||||
authorizedKeysFiles = [ "/home/asakiyuki/.ssh/authorized_keys" ];
|
||||
settings = {
|
||||
AllowUsers = [
|
||||
"asakiyuki"
|
||||
"junko"
|
||||
];
|
||||
PasswordAuthentication = true;
|
||||
KbdInteractiveAuthentication = false;
|
||||
AllowAgentForwarding = false;
|
||||
AllowStreamLocalForwarding = false;
|
||||
X11Forwarding = false;
|
||||
PermitRootLogin = "no";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
networking = {
|
||||
useDHCP = false;
|
||||
networkmanager.enable = true;
|
||||
defaultGateway = "192.168.1.1";
|
||||
nameservers = [
|
||||
"8.8.8.8"
|
||||
"1.1.1.1"
|
||||
];
|
||||
|
||||
interfaces = {
|
||||
enp1s0 = {
|
||||
useDHCP = false;
|
||||
|
||||
ipv4.addresses = [
|
||||
{
|
||||
address = "192.168.1.100";
|
||||
prefixLength = 24;
|
||||
}
|
||||
];
|
||||
|
||||
ipv6.addresses = [
|
||||
{
|
||||
address = "2402:800:62d0:1c26:abcd:1234:5678:9abc";
|
||||
prefixLength = 64;
|
||||
}
|
||||
];
|
||||
};
|
||||
};
|
||||
|
||||
firewall = {
|
||||
enable = true;
|
||||
allowedUDPPorts = [
|
||||
53
|
||||
34778
|
||||
];
|
||||
allowedTCPPorts = [
|
||||
80
|
||||
443
|
||||
18581
|
||||
8443
|
||||
15523
|
||||
53
|
||||
583
|
||||
25565
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
50
host/server/networking.nix
Normal file
50
host/server/networking.nix
Normal file
|
|
@ -0,0 +1,50 @@
|
|||
{ ... }:
|
||||
{
|
||||
networking = {
|
||||
firewall = {
|
||||
enable = true;
|
||||
allowedUDPPorts = [
|
||||
53
|
||||
34778
|
||||
];
|
||||
allowedTCPPorts = [
|
||||
80
|
||||
443
|
||||
18581
|
||||
8443
|
||||
15523
|
||||
53
|
||||
583
|
||||
25565
|
||||
];
|
||||
};
|
||||
|
||||
useDHCP = false;
|
||||
networkmanager.enable = true;
|
||||
|
||||
defaultGateway = "192.168.1.1";
|
||||
nameservers = [
|
||||
"8.8.8.8"
|
||||
"1.1.1.1"
|
||||
];
|
||||
|
||||
interfaces = {
|
||||
enp1s0 = {
|
||||
useDHCP = false;
|
||||
ipv4.addresses = [
|
||||
{
|
||||
address = "192.168.1.100";
|
||||
prefixLength = 24;
|
||||
}
|
||||
];
|
||||
|
||||
ipv6.addresses = [
|
||||
{
|
||||
address = "2402:800:62d0:1c26:abcd:1234:5678:9abc";
|
||||
prefixLength = 64;
|
||||
}
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
{ libs, ... }: [
|
||||
imports = [
|
||||
(libs.root "/modules/services/adguardhome.nix")
|
||||
];
|
||||
]
|
||||
9
host/server/services.nix
Normal file
9
host/server/services.nix
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
{ libs, ... }:
|
||||
{
|
||||
imports = [
|
||||
(libs.root "/modules/services/adguardhome.nix")
|
||||
(libs.root "/modules/services/cloudflare-dyndns.nix")
|
||||
(libs.root "/modules/services/fail2ban.nix")
|
||||
(libs.root "/modules/services/openssh.nix")
|
||||
];
|
||||
}
|
||||
Reference in a new issue