Compare commits
No commits in common. "b5e55e60152f2d80563a39eb26902fe68a13c7fe" and "c4ad75b73268d8d831a48a40e23ef155feb01885" have entirely different histories.
b5e55e6015
...
c4ad75b732
6 changed files with 9 additions and 17 deletions
|
@ -53,9 +53,9 @@
|
||||||
HostName 192.168.1.211
|
HostName 192.168.1.211
|
||||||
User notoh
|
User notoh
|
||||||
IdentityFile ~/.ssh/arashi
|
IdentityFile ~/.ssh/arashi
|
||||||
Host sora
|
Host hetzner
|
||||||
HostName 5.161.181.184
|
HostName 5.161.181.184
|
||||||
User notoh
|
User root
|
||||||
IdentityFile ~/.ssh/kumo
|
IdentityFile ~/.ssh/kumo
|
||||||
Host pihole
|
Host pihole
|
||||||
Hostname 192.168.1.221
|
Hostname 192.168.1.221
|
||||||
|
|
|
@ -18,7 +18,6 @@ alias sakura = nix run github:serokell/deploy-rs ".#sakura"
|
||||||
alias kariru = nix run github:serokell/deploy-rs ".#kariru"
|
alias kariru = nix run github:serokell/deploy-rs ".#kariru"
|
||||||
alias yuki = nix run github:serokell/deploy-rs ".#yuki"
|
alias yuki = nix run github:serokell/deploy-rs ".#yuki"
|
||||||
alias arashi = nix run github:serokell/deploy-rs ".#arashi"
|
alias arashi = nix run github:serokell/deploy-rs ".#arashi"
|
||||||
alias sora = nix run github:serokell/deploy-rs ".#sora"
|
|
||||||
alias dx = nix run "nixpkgs#deadnix"
|
alias dx = nix run "nixpkgs#deadnix"
|
||||||
alias sx = nix run "nixpkgs#statix" -- check
|
alias sx = nix run "nixpkgs#statix" -- check
|
||||||
alias sxfix = nix run "nixpkgs#statix" -- fix
|
alias sxfix = nix run "nixpkgs#statix" -- fix
|
||||||
|
|
|
@ -2,11 +2,16 @@
|
||||||
imports = [
|
imports = [
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
./networking.nix
|
./networking.nix
|
||||||
./services
|
|
||||||
../../modules
|
../../modules
|
||||||
];
|
];
|
||||||
|
|
||||||
boot.tmp.cleanOnBoot = true;
|
environment.systemPackages = with pkgs; [
|
||||||
|
git
|
||||||
|
croc
|
||||||
|
helix
|
||||||
|
];
|
||||||
|
|
||||||
|
boot.cleanTmpDir = true;
|
||||||
zramSwap.enable = true;
|
zramSwap.enable = true;
|
||||||
networking.hostName = "sora";
|
networking.hostName = "sora";
|
||||||
networking.domain = "";
|
networking.domain = "";
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
{...}: {
|
{...}: {
|
||||||
imports = [
|
imports = [
|
||||||
./uptimekuma.nix
|
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,10 +0,0 @@
|
||||||
_: {
|
|
||||||
networking.firewall.allowedTCPPorts = [4000];
|
|
||||||
services.uptime-kuma = {
|
|
||||||
enable = true;
|
|
||||||
settings = {
|
|
||||||
HOST = "100.87.54.48";
|
|
||||||
PORT = "4000";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -55,7 +55,6 @@
|
||||||
"192.168.0.0/16"
|
"192.168.0.0/16"
|
||||||
"172.16.0.0/12"
|
"172.16.0.0/12"
|
||||||
"10.0.0.0/8"
|
"10.0.0.0/8"
|
||||||
"5.161.181.184"
|
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue