server/flake.nix

102 lines
3.1 KiB
Nix
Raw Permalink Normal View History

2024-09-24 20:36:31 +01:00
{
description = "Configuration for my NixOS home server, lambda";
inputs = {
nixpkgs-unstable.url = "nixpkgs/nixos-unstable";
agenix.url = "github:ryantm/agenix";
agenix.inputs.nixpkgs.follows = "nixpkgs-unstable";
deploy-rs.url = "github:serokell/deploy-rs";
deploy-rs.inputs.nixpkgs.follows = "nixpkgs-unstable";
};
outputs = { self, nixpkgs-unstable, agenix, deploy-rs }:
let
root_domain = "spyhoodle.me";
hostname = "jet";
hostgroup = "echo";
tailnet = "clicks.domains";
system = "aarch64-linux";
pkgs = import nixpkgs-unstable {
inherit system;
config.allowUnfree = true;
config.permittedInsecurePackages = [
"olm-3.2.16"
];
};
in
{
packages.${system} = {
nixosConfigurations.${hostname} = nixpkgs-unstable.lib.nixosSystem {
inherit system;
inherit pkgs;
specialArgs = {
inherit hostname;
inherit hostgroup;
inherit tailnet;
domains = {
root = "${root_domain}";
git = "git.${root_domain}";
ssh = "${hostname}.${hostgroup}.${tailnet}";
auth = "auth.${root_domain}";
notes = "notes.${root_domain}";
2024-09-24 20:36:31 +01:00
};
};
modules = [
# Services Modules
./services/acme.nix
./services/website.nix
./services/matrix-nginx.nix
./services/matrix-synapse.nix
./services/matrix-authentication-service.nix
./services/mjolnir.nix
./services/gitea.nix
./services/nginx.nix
./services/syncplay.nix
./services/postgresql.nix
./services/tailscale.nix
./services/silverbullet.nix
2024-09-24 20:36:31 +01:00
# Custom Modules
./modules/matrix-authentication-service.nix
./modules/tailscale-clicks.nix
# Agenix
agenix.nixosModules.default
{ environment.systemPackages = [ agenix.packages.${system}.default ]; }
# System Modules
./system/ssh.nix
./system/users.nix
./system/zsh.nix
./system/locale.nix
./system/gpg.nix
./system/nix.nix
./system/nixos.nix
./system/doas.nix
./system/hardware.nix
./system/audio.nix
./system/bluetooth.nix
./system/boot.nix
./system/networking.nix
./system/firewall.nix
./system/packages.nix
./system/secrets.nix
];
};
};
deploy.nodes.${hostname} = {
hostname = "${hostname}.${hostgroup}.${tailnet}";
profiles.system = {
user = "root";
path = deploy-rs.lib.${system}.activate.nixos self.nixosConfigurations.${hostname};
};
};
checks = builtins.mapAttrs (system: deployLib: deployLib.deployChecks self.deploy) deploy-rs.lib;
formatter.${system} = nixpkgs-unstable.legacyPackages.${system}.nixpkgs-fmt;
};
}