s0mev1rtn0de-nix -> kyra + {hazel, lynn, ivy, mel}: rename + modularity
Signed-off-by: s0me1newithhand7s <git+me@hand7s.org>
This commit is contained in:
parent
c1445349f0
commit
91d145fc9b
50 changed files with 377 additions and 278 deletions
19
kyra/boot/initrd/availableKernelModules.nix
Normal file
19
kyra/boot/initrd/availableKernelModules.nix
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
_: {
|
||||
boot = {
|
||||
initrd = {
|
||||
availableKernelModules = [
|
||||
"ata_piix"
|
||||
"uhci_hcd"
|
||||
"xen_blkfront"
|
||||
"vmw_pvscsi"
|
||||
"virtio_net"
|
||||
"virtio_pci"
|
||||
"virtio_mmio"
|
||||
"virtio_blk"
|
||||
"virtio_scsi"
|
||||
"9p"
|
||||
"9pnet_virtio"
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
14
kyra/boot/initrd/kernelModules.nix
Normal file
14
kyra/boot/initrd/kernelModules.nix
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
_: {
|
||||
boot = {
|
||||
initrd = {
|
||||
kernelModules = [
|
||||
"virtio_balloon"
|
||||
"virtio_console"
|
||||
"virtio_rng"
|
||||
"virtio_gpu"
|
||||
"nvme"
|
||||
"kvm-amd"
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
12
kyra/boot/kernel.nix
Normal file
12
kyra/boot/kernel.nix
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
_: {
|
||||
boot = {
|
||||
kernel = {
|
||||
sysctl = {
|
||||
"net.ipv4.ip_forward" = 1;
|
||||
"net.ipv6.conf.all.forwarding" = 1;
|
||||
"net.ipv4.ip_nonlocal_bind" = 1;
|
||||
"net.ipv6.ip_nonlocal_bind" = 1;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
11
kyra/boot/loader/grub.nix
Normal file
11
kyra/boot/loader/grub.nix
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
_: {
|
||||
boot = {
|
||||
loader = {
|
||||
grub = {
|
||||
enable = true;
|
||||
efiSupport = true;
|
||||
efiInstallAsRemovable = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
7
kyra/boot/tmp.nix
Normal file
7
kyra/boot/tmp.nix
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
_: {
|
||||
boot = {
|
||||
tmp = {
|
||||
cleanOnBoot = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
57
kyra/default.nix
Normal file
57
kyra/default.nix
Normal file
|
|
@ -0,0 +1,57 @@
|
|||
{self, ...}: {
|
||||
imports = [
|
||||
"${self}/kyra/disko/disk.nix"
|
||||
"${self}/kyra/disko/lvm_vg.nix"
|
||||
|
||||
"${self}/kyra/boot/initrd/availableKernelModules.nix"
|
||||
"${self}/kyra/boot/initrd/kernelModules.nix"
|
||||
"${self}/kyra/boot/loader/grub.nix"
|
||||
"${self}/kyra/boot/kernel.nix"
|
||||
"${self}/kyra/boot/tmp.nix"
|
||||
|
||||
"${self}/kyra/environment/systemPackages.nix"
|
||||
|
||||
"${self}/kyra/hardware/zram.nix"
|
||||
|
||||
"${self}/kyra/home-manager/users.nix"
|
||||
|
||||
"${self}/kyra/networking/interfaces/ens3.nix"
|
||||
"${self}/kyra/networking/firewall/ens3.nix"
|
||||
"${self}/kyra/networking/firewall.nix"
|
||||
"${self}/kyra/networking/dns.nix"
|
||||
"${self}/kyra/networking/wireguard.nix"
|
||||
"${self}/kyra/networking/defaultGateway.nix"
|
||||
|
||||
"${self}/kyra/nix/settings/allowed-users.nix"
|
||||
"${self}/kyra/nix/settings/experimental-features.nix"
|
||||
"${self}/kyra/nix/settings/substituters.nix"
|
||||
"${self}/kyra/nix/settings/trusted-public-keys.nix"
|
||||
"${self}/kyra/nix/settings/trusted-users.nix"
|
||||
"${self}/kyra/nix/settings/auto-optimise-store.nix"
|
||||
|
||||
"${self}/kyra/nixpkgs/config.nix"
|
||||
"${self}/kyra/nixpkgs/platform.nix"
|
||||
|
||||
"${self}/kyra/programs/nh.nix"
|
||||
|
||||
"${self}/kyra/services/openssh.nix"
|
||||
"${self}/kyra/services/fail2ban.nix"
|
||||
"${self}/kyra/services/netbird.nix"
|
||||
"${self}/kyra/services/qemuGuest.nix"
|
||||
"${self}/kyra/services/caddy.nix"
|
||||
"${self}/kyra/services/sing-box.nix"
|
||||
|
||||
"${self}/kyra/sops/age.nix"
|
||||
"${self}/kyra/sops/defaults.nix"
|
||||
"${self}/kyra/sops/secrets.nix"
|
||||
|
||||
"${self}/kyra/system/stateVersion.nix"
|
||||
|
||||
"${self}/kyra/users/users.nix"
|
||||
"${self}/kyra/users/users/alep0u.nix"
|
||||
"${self}/kyra/users/users/hand7s.nix"
|
||||
"${self}/kyra/users/users/root.nix"
|
||||
|
||||
"${self}/kyra/virtualisation/docker.nix"
|
||||
];
|
||||
}
|
||||
44
kyra/disko/disk.nix
Normal file
44
kyra/disko/disk.nix
Normal file
|
|
@ -0,0 +1,44 @@
|
|||
{
|
||||
disko = {
|
||||
devices = {
|
||||
disk = {
|
||||
virt_main = {
|
||||
device = "/dev/sda";
|
||||
type = "disk";
|
||||
content = {
|
||||
type = "gpt";
|
||||
partitions = {
|
||||
boot = {
|
||||
name = "boot";
|
||||
size = "1M";
|
||||
type = "EF02";
|
||||
};
|
||||
|
||||
ESP = {
|
||||
name = "ESP";
|
||||
size = "1024M";
|
||||
type = "EF00";
|
||||
content = {
|
||||
type = "filesystem";
|
||||
format = "vfat";
|
||||
mountpoint = "/boot";
|
||||
mountOptions = [
|
||||
"umask=0077"
|
||||
];
|
||||
};
|
||||
};
|
||||
|
||||
root = {
|
||||
size = "100%";
|
||||
content = {
|
||||
type = "lvm_pv";
|
||||
vg = "pool";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
27
kyra/disko/lvm_vg.nix
Normal file
27
kyra/disko/lvm_vg.nix
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
{
|
||||
disko = {
|
||||
devices = {
|
||||
lvm_vg = {
|
||||
pool = {
|
||||
type = "lvm_vg";
|
||||
lvs = {
|
||||
root = {
|
||||
size = "100%FREE";
|
||||
content = {
|
||||
type = "btrfs";
|
||||
mountpoint = "/";
|
||||
extraArgs = [
|
||||
"-f"
|
||||
];
|
||||
|
||||
mountOptions = [
|
||||
"compress=zstd"
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
10
kyra/environment/systemPackages.nix
Normal file
10
kyra/environment/systemPackages.nix
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
{pkgs, ...}: {
|
||||
environment = {
|
||||
systemPackages = [
|
||||
pkgs.helix
|
||||
pkgs.comma
|
||||
];
|
||||
|
||||
enableAllTerminfo = true;
|
||||
};
|
||||
}
|
||||
8
kyra/hardware/zram.nix
Normal file
8
kyra/hardware/zram.nix
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
_: {
|
||||
zramSwap = {
|
||||
enable = true;
|
||||
algorithm = "zstd";
|
||||
priority = 100;
|
||||
memoryPercent = 100;
|
||||
};
|
||||
}
|
||||
27
kyra/home-manager/users.nix
Normal file
27
kyra/home-manager/users.nix
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
{self, ...}: {
|
||||
home-manager = {
|
||||
users = {
|
||||
"hand7s" = {
|
||||
imports = [
|
||||
"${self}/hand7s/"
|
||||
self.inputs.agenix.homeManagerModules.default
|
||||
self.inputs.spicetify-nix.homeManagerModules.default
|
||||
self.inputs.hyprland.homeManagerModules.default
|
||||
self.inputs.chaotic.homeManagerModules.default
|
||||
self.inputs.sops-nix.homeManagerModules.sops
|
||||
|
||||
self.inputs.nix-index-database.homeModules.nix-index
|
||||
self.inputs.noctalia.homeModules.default
|
||||
];
|
||||
};
|
||||
};
|
||||
|
||||
backupFileExtension = "force";
|
||||
|
||||
extraSpecialArgs = {
|
||||
inherit
|
||||
self
|
||||
;
|
||||
};
|
||||
};
|
||||
}
|
||||
17
kyra/networking/defaultGateway.nix
Normal file
17
kyra/networking/defaultGateway.nix
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
{
|
||||
lib,
|
||||
config,
|
||||
...
|
||||
}: {
|
||||
networking = {
|
||||
defaultGateway = lib.mkIf (config.networking.hostName == "mel") {
|
||||
address = "45.11.229.1";
|
||||
interface = "ens3";
|
||||
};
|
||||
|
||||
defaultGateway6 = lib.mkIf (config.networking.hostName == "mel") {
|
||||
address = "2a0e:97c0:3e3:2Oa::1";
|
||||
interface = "ens3";
|
||||
};
|
||||
};
|
||||
}
|
||||
29
kyra/networking/dns.nix
Normal file
29
kyra/networking/dns.nix
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
_: {
|
||||
networking = {
|
||||
nameservers = [
|
||||
# cf dns
|
||||
"1.1.1.1"
|
||||
"1.0.0.1"
|
||||
"2606:4700:4700::1111"
|
||||
"2606:4700:4700::1001"
|
||||
|
||||
# google dns
|
||||
"8.8.8.8"
|
||||
"8.8.4.4"
|
||||
"2001:4860:4860::8888"
|
||||
"2001:4860:4860::8844"
|
||||
|
||||
# q9 dns
|
||||
"9.9.9.9"
|
||||
"149.112.112.112"
|
||||
"2620:fe::fe"
|
||||
"2620:fe::9"
|
||||
|
||||
# open dns
|
||||
"208.67.222.222"
|
||||
"208.67.220.220"
|
||||
"2620:119:35::35"
|
||||
"2620:119:53::53"
|
||||
];
|
||||
};
|
||||
}
|
||||
11
kyra/networking/firewall.nix
Normal file
11
kyra/networking/firewall.nix
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
_: {
|
||||
networking = {
|
||||
firewall = {
|
||||
enable = true;
|
||||
allowPing = true;
|
||||
checkReversePath = false;
|
||||
};
|
||||
|
||||
useNetworkd = true;
|
||||
};
|
||||
}
|
||||
57
kyra/networking/firewall/ens3.nix
Normal file
57
kyra/networking/firewall/ens3.nix
Normal file
|
|
@ -0,0 +1,57 @@
|
|||
{
|
||||
config,
|
||||
lib,
|
||||
...
|
||||
}: {
|
||||
networking = {
|
||||
firewall = {
|
||||
interfaces = {
|
||||
ens3 = {
|
||||
allowedUDPPorts =
|
||||
[
|
||||
53580
|
||||
53590
|
||||
]
|
||||
++ lib.optionals (config.networking.hostName == "hazel") [
|
||||
443
|
||||
|
||||
25565
|
||||
|
||||
24
|
||||
25
|
||||
110
|
||||
143
|
||||
465
|
||||
587
|
||||
993
|
||||
995
|
||||
4190
|
||||
53570
|
||||
];
|
||||
|
||||
allowedTCPPorts =
|
||||
[
|
||||
53580
|
||||
53590
|
||||
]
|
||||
++ lib.optionals (config.networking.hostName == "hazel") [
|
||||
443
|
||||
|
||||
25565
|
||||
|
||||
24
|
||||
25
|
||||
110
|
||||
143
|
||||
465
|
||||
587
|
||||
993
|
||||
995
|
||||
4190
|
||||
53570
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
5
kyra/networking/hostname.nix
Normal file
5
kyra/networking/hostname.nix
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
_: {
|
||||
networking = {
|
||||
hostName = "kyra";
|
||||
};
|
||||
}
|
||||
36
kyra/networking/interfaces/ens3.nix
Normal file
36
kyra/networking/interfaces/ens3.nix
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
{
|
||||
config,
|
||||
lib,
|
||||
...
|
||||
}: {
|
||||
networking = {
|
||||
interfaces = {
|
||||
ens3 = {
|
||||
ipv4 = {
|
||||
addresses = lib.optionals (config.networking.hostName == "mel") [
|
||||
{
|
||||
address = "45.11.229.254";
|
||||
prefixLength = 24;
|
||||
}
|
||||
];
|
||||
};
|
||||
|
||||
ipv6 = {
|
||||
addresses =
|
||||
lib.optionals (config.networking.hostName == "hazel") [
|
||||
{
|
||||
address = "2a03:6f01:1:2::cb1e";
|
||||
prefixLength = 64;
|
||||
}
|
||||
]
|
||||
++ lib.optionals (config.networking.hostName == "mel") [
|
||||
{
|
||||
address = "2a0e:97c0:3e3:2Oa::1";
|
||||
prefixLength = 64;
|
||||
}
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
7
kyra/networking/wireguard.nix
Normal file
7
kyra/networking/wireguard.nix
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
_: {
|
||||
networking = {
|
||||
wireguard = {
|
||||
enable = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
10
kyra/nix/settings/allowed-users.nix
Normal file
10
kyra/nix/settings/allowed-users.nix
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
_: {
|
||||
nix = {
|
||||
settings = {
|
||||
sandbox = true;
|
||||
allowed-users = [
|
||||
"@wheel"
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
7
kyra/nix/settings/auto-optimise-store.nix
Normal file
7
kyra/nix/settings/auto-optimise-store.nix
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
_: {
|
||||
nix = {
|
||||
settings = {
|
||||
auto-optimise-store = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
10
kyra/nix/settings/experimental-features.nix
Normal file
10
kyra/nix/settings/experimental-features.nix
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
_: {
|
||||
nix = {
|
||||
settings = {
|
||||
experimental-features = [
|
||||
"nix-command"
|
||||
"flakes"
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
19
kyra/nix/settings/substituters.nix
Normal file
19
kyra/nix/settings/substituters.nix
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
_: {
|
||||
nix = {
|
||||
settings = {
|
||||
substituters = [
|
||||
# cache.nixos.org
|
||||
"https://cache.nixos.org"
|
||||
# cache.garnix.org
|
||||
"https://cache.garnix.io"
|
||||
# cachix
|
||||
"https://nix-community.cachix.org/"
|
||||
"https://chaotic-nyx.cachix.org/"
|
||||
"https://hyprland.cachix.org"
|
||||
"https://chaotic-nyx.cachix.org/"
|
||||
# nix-community
|
||||
"https://hydra.nix-community.org/"
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
18
kyra/nix/settings/trusted-public-keys.nix
Normal file
18
kyra/nix/settings/trusted-public-keys.nix
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
_: {
|
||||
nix = {
|
||||
settings = {
|
||||
trusted-public-keys = [
|
||||
# cache.nixos.org
|
||||
"cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY="
|
||||
# cache.garnix.io
|
||||
"cache.garnix.io:CTFPyKSLcx5RMJKfLo5EEPUObbA78b0YQ2DTCJXqr9g="
|
||||
# cachix.org
|
||||
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
|
||||
"chaotic-nyx.cachix.org-1:HfnXSw4pj95iI/n17rIDy40agHj12WfF+Gqk6SonIT8="
|
||||
"ags.cachix.org-1:naAvMrz0CuYqeyGNyLgE010iUiuf/qx6kYrUv3NwAJ8="
|
||||
"hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc="
|
||||
"chaotic-nyx.cachix.org-1:HfnXSw4pj95iI/n17rIDy40agHj12WfF+Gqk6SonIT8="
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
9
kyra/nix/settings/trusted-users.nix
Normal file
9
kyra/nix/settings/trusted-users.nix
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
_: {
|
||||
nix = {
|
||||
settings = {
|
||||
trusted-users = [
|
||||
"@wheel"
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
8
kyra/nixpkgs/config.nix
Normal file
8
kyra/nixpkgs/config.nix
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
_: {
|
||||
nixpkgs = {
|
||||
config = {
|
||||
allowBroken = true;
|
||||
allowUnfree = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
6
kyra/nixpkgs/platform.nix
Normal file
6
kyra/nixpkgs/platform.nix
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
_: {
|
||||
nixpkgs = {
|
||||
system = "x86_64-linux";
|
||||
hostPlatform = "x86_64-linux";
|
||||
};
|
||||
}
|
||||
7
kyra/programs/nh.nix
Normal file
7
kyra/programs/nh.nix
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
_: {
|
||||
programs = {
|
||||
nh = {
|
||||
enable = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
60
kyra/services/caddy.nix
Normal file
60
kyra/services/caddy.nix
Normal file
|
|
@ -0,0 +1,60 @@
|
|||
{
|
||||
config,
|
||||
pkgs,
|
||||
lib,
|
||||
...
|
||||
}: {
|
||||
services = {
|
||||
caddy = {
|
||||
enable =
|
||||
lib.mkIf (
|
||||
config.networking.hostName == "hazel"
|
||||
)
|
||||
true;
|
||||
|
||||
package = pkgs.caddy.withPlugins {
|
||||
plugins = [
|
||||
"github.com/mholt/caddy-l4@v0.0.0-20250902102621-4a517a98d7fa"
|
||||
"github.com/caddy-dns/cloudflare@v0.2.1"
|
||||
];
|
||||
hash = "sha256-1/jRWotKCvx7QncjVSVGYXb2gAmIiokC/ZbCUelG5Rc=";
|
||||
};
|
||||
|
||||
globalConfig = ''
|
||||
debug
|
||||
email me@hand7s.org
|
||||
|
||||
acme_ca https://acme-v02.api.letsencrypt.org/directory
|
||||
|
||||
'';
|
||||
|
||||
# acme_ca https://api.zerossl.com/directory
|
||||
|
||||
virtualHosts = {
|
||||
"hand7s.org" = {
|
||||
extraConfig = ''
|
||||
respond "hi! :D WIP btw"
|
||||
'';
|
||||
};
|
||||
|
||||
"git.hand7s.org" = {
|
||||
extraConfig = ''
|
||||
reverse_proxy ${homeIP}:53350
|
||||
'';
|
||||
};
|
||||
|
||||
"bin.hand7s.org" = {
|
||||
extraConfig = ''
|
||||
reverse_proxy ${homeIP}:80
|
||||
'';
|
||||
};
|
||||
|
||||
"zitadel.hand7s.org" = {
|
||||
extraConfig = ''
|
||||
reverse_proxy ${homeIP}:8443
|
||||
'';
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
14
kyra/services/fail2ban.nix
Normal file
14
kyra/services/fail2ban.nix
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
_: {
|
||||
services = {
|
||||
fail2ban = {
|
||||
enable = true;
|
||||
bantime-increment = {
|
||||
enable = true;
|
||||
factor = "10";
|
||||
formula = "ban.Time * math.exp(float(ban.Count+1)*banFactor)/math.exp(1*banFactor)";
|
||||
overalljails = true;
|
||||
maxtime = "500h";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
7
kyra/services/netbird.nix
Normal file
7
kyra/services/netbird.nix
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
{...}: {
|
||||
services = {
|
||||
netbird = {
|
||||
enable = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
23
kyra/services/openssh.nix
Normal file
23
kyra/services/openssh.nix
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
_: {
|
||||
services = {
|
||||
openssh = {
|
||||
enable = true;
|
||||
ports = [
|
||||
58693
|
||||
];
|
||||
|
||||
settings = {
|
||||
PrintMotd = false;
|
||||
PermitRootLogin = "no";
|
||||
PasswordAuthentication = false;
|
||||
MaxAuthTries = 3;
|
||||
LoginGraceTime = 10;
|
||||
PermitEmptyPasswords = "no";
|
||||
ChallengeResponseAuthentication = "no";
|
||||
KerberosAuthentication = "no";
|
||||
GSSAPIAuthentication = "no";
|
||||
X11Forwarding = false;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
7
kyra/services/qemuGuest.nix
Normal file
7
kyra/services/qemuGuest.nix
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
_: {
|
||||
services = {
|
||||
qemuGuest = {
|
||||
enable = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
88
kyra/services/sing-box.nix
Normal file
88
kyra/services/sing-box.nix
Normal file
|
|
@ -0,0 +1,88 @@
|
|||
{...}: {
|
||||
services = {
|
||||
sing-box = {
|
||||
enable = true;
|
||||
settings = {
|
||||
log = {
|
||||
level = "debug";
|
||||
};
|
||||
|
||||
dns = {
|
||||
servers = [
|
||||
{
|
||||
type = "local";
|
||||
tag = "local";
|
||||
}
|
||||
];
|
||||
|
||||
final = "local";
|
||||
strategy = "prefer_ipv6";
|
||||
};
|
||||
|
||||
route = {
|
||||
final = "direct-out";
|
||||
auto_detect_interface = true;
|
||||
};
|
||||
|
||||
outbounds = [
|
||||
{
|
||||
tag = "direct-out";
|
||||
type = "direct";
|
||||
}
|
||||
];
|
||||
|
||||
inbounds = [
|
||||
{
|
||||
type = "vless";
|
||||
tag = "vless-inbound";
|
||||
|
||||
listen = "::";
|
||||
listen_port = 53570;
|
||||
|
||||
users = [
|
||||
{
|
||||
name = "hand7s_1";
|
||||
uuid = "${singboxUUID2}";
|
||||
flow = "xtls-rprx-vision";
|
||||
}
|
||||
|
||||
{
|
||||
name = "hand7s_2";
|
||||
uuid = "${singboxUUID2}";
|
||||
flow = "xtls-rprx-vision";
|
||||
}
|
||||
];
|
||||
|
||||
tls = rec {
|
||||
enabled = true;
|
||||
server_name = "vk.com";
|
||||
reality = {
|
||||
enabled = true;
|
||||
max_time_difference = "5m";
|
||||
handshake = {
|
||||
server = server_name;
|
||||
server_port = 443;
|
||||
};
|
||||
|
||||
private_key = "${singboxKey}";
|
||||
|
||||
short_id = [
|
||||
"${singboxId}"
|
||||
];
|
||||
};
|
||||
};
|
||||
|
||||
transport = {
|
||||
type = "httpupgrade";
|
||||
};
|
||||
|
||||
multiplex = {
|
||||
enabled = true;
|
||||
padding = false;
|
||||
};
|
||||
}
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
5
kyra/system/stateVersion.nix
Normal file
5
kyra/system/stateVersion.nix
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
_: {
|
||||
system = {
|
||||
stateVersion = "23.11";
|
||||
};
|
||||
}
|
||||
5
kyra/users/users.nix
Normal file
5
kyra/users/users.nix
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
_: {
|
||||
users = {
|
||||
mutableUsers = false;
|
||||
};
|
||||
}
|
||||
23
kyra/users/users/alep0u.nix
Normal file
23
kyra/users/users/alep0u.nix
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
_: {
|
||||
users = {
|
||||
users = {
|
||||
"alep0u" = {
|
||||
description = "alep0u";
|
||||
isNormalUser = true;
|
||||
password = "alep0u";
|
||||
extraGroups = [
|
||||
"wheel"
|
||||
"docker"
|
||||
];
|
||||
|
||||
openssh = {
|
||||
authorizedKeys = {
|
||||
keys = [
|
||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIItDketCj5COoCvAPLhqOcBhWC1H50MApP2gDt/lkW7E alep0u@alep0u"
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
23
kyra/users/users/hand7s.nix
Normal file
23
kyra/users/users/hand7s.nix
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
_: {
|
||||
users = {
|
||||
users = {
|
||||
"hand7s" = {
|
||||
description = "hands";
|
||||
isNormalUser = true;
|
||||
hashedPassword = "$y$j9T$eHfq328GBp7Ga8xsbOTV/0$kcihv7zWLqSkj2jKAhI1pdbTSwvaf2RY5Rokm69XTL/";
|
||||
extraGroups = [
|
||||
"wheel"
|
||||
"docker"
|
||||
];
|
||||
|
||||
openssh = {
|
||||
authorizedKeys = {
|
||||
keys = [
|
||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIDp2IIdR5jV1HyG4aiRX7SfTNrXDhCx5rTiFU40qkOKq litvinovb0@gmail.com"
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
9
kyra/users/users/root.nix
Normal file
9
kyra/users/users/root.nix
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
{pkgs, ...}: {
|
||||
users = {
|
||||
users = {
|
||||
"root" = {
|
||||
shell = "${pkgs.util-linux}/bin/nologin";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
14
kyra/virtualisation/docker.nix
Normal file
14
kyra/virtualisation/docker.nix
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
_: {
|
||||
virtualisation = {
|
||||
oci-containers = {
|
||||
backend = "docker";
|
||||
};
|
||||
|
||||
docker = {
|
||||
enable = true;
|
||||
rootless = {
|
||||
enable = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue