2022-11-06 20:23:10 +00:00
|
|
|
{
|
|
|
|
inputs = {
|
|
|
|
nixpkgs.url = "nixpkgs/nixos-unstable";
|
|
|
|
home-manager.url = "github:nix-community/home-manager";
|
|
|
|
home-manager.inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
2022-11-14 20:56:23 +00:00
|
|
|
|
2022-11-24 03:48:28 +00:00
|
|
|
outputs = { self, nixpkgs, ... }:
|
|
|
|
let lib = nixpkgs.lib; in
|
|
|
|
{
|
|
|
|
# Windows with NixOS WSL
|
|
|
|
nixosConfigurations.Felia = nixpkgs.lib.nixosSystem {
|
|
|
|
system = "x86_64-linux";
|
|
|
|
modules = [
|
|
|
|
./wsl-configuration.nix
|
|
|
|
];
|
|
|
|
specialArgs = {
|
|
|
|
# includeHardware = false;
|
|
|
|
hostname = "Felia";
|
2022-11-24 04:25:13 +00:00
|
|
|
services.openssh = {
|
|
|
|
permitRootLogin = "no";
|
|
|
|
enable = true;
|
|
|
|
};
|
2022-11-14 22:10:46 +00:00
|
|
|
};
|
2022-11-24 03:48:28 +00:00
|
|
|
};
|
|
|
|
# Generic machine
|
|
|
|
nixosConfigurations.lizzi = nixpkgs.lib.nixosSystem {
|
|
|
|
system = "x86_64-linux";
|
|
|
|
modules = [
|
|
|
|
./configuration.nix
|
|
|
|
];
|
|
|
|
specialArgs = {
|
|
|
|
hostname = "lizzi";
|
|
|
|
networking = {
|
|
|
|
interfaces.eth1.ipv4.addresses = [{
|
|
|
|
address = "71.0.0.1";
|
|
|
|
prefixLength = 24;
|
|
|
|
}];
|
|
|
|
firewall.enable = false;
|
|
|
|
useDHCP = false;
|
|
|
|
interfaces.eth0.useDHCP = true;
|
|
|
|
};
|
|
|
|
boot.loader.grub.enable = true;
|
|
|
|
boot.loader.grub.version = 2;
|
|
|
|
services.openssh = {
|
|
|
|
permitRootLogin = "no";
|
|
|
|
enable = true;
|
|
|
|
};
|
|
|
|
services.gitea = {
|
|
|
|
enable = true;
|
|
|
|
stateDir = "/gitea";
|
|
|
|
rootUrl = "https://git.pegasust.com";
|
|
|
|
settings = {
|
|
|
|
repository = {
|
|
|
|
"ENABLE_PUSH_CREATE_USER" = true;
|
|
|
|
"ENABLE_PUSH_CREATE_ORG" = true;
|
|
|
|
};
|
2022-11-14 22:26:42 +00:00
|
|
|
};
|
|
|
|
};
|
2022-11-24 03:48:28 +00:00
|
|
|
services.nginx = {
|
|
|
|
enable = true;
|
|
|
|
clientMaxBodySize = "100m";
|
|
|
|
recommendedGzipSettings = true;
|
|
|
|
recommendedOptimisation = true;
|
|
|
|
recommendedProxySettings = true;
|
|
|
|
recommendedTlsSettings = true;
|
|
|
|
virtualHosts."git.pegasust.com" = {
|
|
|
|
# Gitea hostname
|
|
|
|
sslCertificate = "/var/lib/acme/git.pegasust.com/fullchain.pem";
|
|
|
|
sslCertificateKey = "/var/lib/acme/git.pegasust.com/key.pem";
|
|
|
|
forceSSL = true; # Runs on port 80 and 443
|
|
|
|
locations."/".proxyPass = "http://localhost:3000/"; # Proxy to Gitea
|
|
|
|
};
|
2022-11-14 22:26:42 +00:00
|
|
|
};
|
2022-11-14 22:10:46 +00:00
|
|
|
};
|
2022-11-14 20:56:23 +00:00
|
|
|
};
|
2022-11-24 03:48:28 +00:00
|
|
|
nixosConfigurations.nyx = nixpkgs.lib.nixosSystem {
|
|
|
|
system = "x86_64-linux";
|
|
|
|
modules = [
|
|
|
|
./configuration.nix
|
|
|
|
];
|
|
|
|
specialArgs = {
|
|
|
|
hostname = "nyx";
|
|
|
|
networking = {
|
|
|
|
interfaces.eth1.ipv4.addresses = [{
|
|
|
|
address = "71.0.0.2";
|
|
|
|
prefixLength = 24;
|
|
|
|
}];
|
|
|
|
firewall.enable = true;
|
|
|
|
useDHCP = false;
|
|
|
|
interfaces.eth0.useDHCP = true;
|
|
|
|
};
|
|
|
|
boot.loader.grub.enable = true;
|
|
|
|
boot.loader.grub.version = 2;
|
|
|
|
services.openssh = {
|
|
|
|
permitRootLogin = "no";
|
|
|
|
enable = true;
|
|
|
|
};
|
2022-11-14 22:10:46 +00:00
|
|
|
};
|
2022-11-14 20:56:23 +00:00
|
|
|
};
|
2022-11-24 03:48:28 +00:00
|
|
|
nixosConfigurations.nixos = nixpkgs.lib.nixosSystem {
|
|
|
|
system = "x86_64-linux";
|
|
|
|
modules = [
|
|
|
|
./configuration.nix
|
|
|
|
];
|
|
|
|
specialArgs = {
|
|
|
|
hostname = "nixos";
|
|
|
|
};
|
2022-11-14 20:56:23 +00:00
|
|
|
};
|
2022-11-06 20:23:10 +00:00
|
|
|
};
|
|
|
|
}
|