tlaternet-server/flake.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

162 lines
4.3 KiB
Nix
Raw Normal View History

{
description = "tlater.net host configuration";
inputs = {
2024-06-13 23:49:12 +01:00
nixpkgs.url = "github:nixos/nixpkgs/nixos-24.05";
2023-02-26 05:46:11 +00:00
nixpkgs-unstable.url = "github:nixos/nixpkgs/nixos-unstable";
2024-03-02 01:27:24 +00:00
disko = {
url = "github:nix-community/disko";
inputs.nixpkgs.follows = "nixpkgs";
};
deploy-rs.url = "github:serokell/deploy-rs";
2022-04-23 04:06:50 +01:00
sops-nix = {
url = "github:Mic92/sops-nix";
inputs.nixpkgs.follows = "nixpkgs";
};
2022-10-17 11:00:02 +01:00
nvfetcher = {
url = "github:berberman/nvfetcher";
inputs.nixpkgs.follows = "nixpkgs";
};
2021-04-12 01:44:10 +01:00
tlaternet-webserver = {
url = "git+https://gitea.tlater.net/tlaternet/tlaternet.git";
2022-10-12 01:17:49 +01:00
inputs.nixpkgs.follows = "nixpkgs";
2021-04-12 01:44:10 +01:00
};
2023-05-11 22:02:57 +01:00
foundryvtt = {
url = "github:reckenrode/nix-foundryvtt";
inputs.nixpkgs.follows = "nixpkgs";
};
2024-04-08 19:02:53 +01:00
sonnenshift = {
url = "git+ssh://git@github.com/sonnenshift/battery-manager?ref=tlater/implement-nix-module";
inputs.nixpkgs.follows = "nixpkgs";
};
};
2022-04-23 04:06:50 +01:00
outputs =
{ self
, nixpkgs
, sops-nix
2022-10-17 11:00:02 +01:00
, nvfetcher
, deploy-rs
, ...
} @ inputs:
let
2022-10-12 01:17:49 +01:00
system = "x86_64-linux";
2024-03-27 00:17:26 +00:00
pkgs = nixpkgs.legacyPackages.${system};
2022-10-12 01:17:49 +01:00
in
{
##################
# Configurations #
##################
nixosConfigurations = {
# The actual system definition
2024-03-02 01:27:24 +00:00
hetzner-1 = nixpkgs.lib.nixosSystem {
inherit system;
specialArgs.flake-inputs = inputs;
2024-03-02 01:27:24 +00:00
modules = [
./configuration
./configuration/hardware-specific/hetzner
];
};
2024-03-02 01:27:24 +00:00
};
2021-04-22 22:32:54 +01:00
############################
# Deployment configuration #
############################
2024-03-02 01:27:24 +00:00
deploy.nodes = {
hetzner-1 = {
hostname = "116.202.158.55";
profiles.system = {
user = "root";
path = deploy-rs.lib.${system}.activate.nixos self.nixosConfigurations.hetzner-1;
};
sshUser = "tlater";
sshOpts = [ "-p" "2222" "-o" "ForwardAgent=yes" ];
};
2024-03-02 01:27:24 +00:00
};
#########
# Tests #
#########
checks = builtins.mapAttrs (system: deployLib: deployLib.deployChecks self.deploy) deploy-rs.lib;
###################
# Utility scripts #
###################
2024-03-27 00:17:26 +00:00
apps.${system} = {
default = self.apps.${system}.run-vm;
2024-03-27 00:17:26 +00:00
run-vm = {
type = "app";
program =
let
vm = nixpkgs.lib.nixosSystem {
inherit system;
specialArgs.flake-inputs = inputs;
2024-03-27 00:17:26 +00:00
modules = [
./configuration
./configuration/hardware-specific/vm.nix
];
};
in
(pkgs.writeShellScript "" ''
${vm.config.system.build.vm.outPath}/bin/run-testvm-vm
'').outPath;
};
2024-03-27 00:17:26 +00:00
update-pkgs = {
type = "app";
2024-03-27 00:17:26 +00:00
program =
let
nvfetcher-bin = "${nvfetcher.packages.${system}.default}/bin/nvfetcher";
in
(pkgs.writeShellScript "update-pkgs" ''
cd "$(git rev-parse --show-toplevel)/pkgs"
${nvfetcher-bin} -o _sources_pkgs -c nvfetcher.toml
'').outPath;
};
update-nextcloud-apps = {
type = "app";
2024-03-27 00:17:26 +00:00
program =
let
nvfetcher-bin = "${nvfetcher.packages.${system}.default}/bin/nvfetcher";
in
(pkgs.writeShellScript "update-nextcloud-apps" ''
cd "$(git rev-parse --show-toplevel)/pkgs"
${nvfetcher-bin} -o _sources_nextcloud -c nextcloud-apps.toml
'').outPath;
};
2022-10-17 11:00:02 +01:00
};
###########################
# Development environment #
###########################
2022-10-22 20:01:44 +01:00
devShells.${system}.default = nixpkgs.legacyPackages.${system}.mkShell {
sopsPGPKeyDirs = [ "./keys/hosts/" "./keys/users/" ];
nativeBuildInputs = [
sops-nix.packages.${system}.sops-import-keys-hook
];
packages = with pkgs; [
2022-10-22 20:01:44 +01:00
sops-nix.packages.${system}.sops-init-gpg-key
deploy-rs.packages.${system}.default
nixpkgs-fmt
cargo
clippy
rustc
rustfmt
rust-analyzer
pkg-config
openssl
2022-10-22 20:01:44 +01:00
];
};
2022-10-22 20:01:44 +01:00
};
}