-
Notifications
You must be signed in to change notification settings - Fork 5
/
flake.nix
executable file
·105 lines (97 loc) · 3.02 KB
/
flake.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
description = "Infraestrutura principal para serviços hospedados pelo GELOS";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-24.05";
hardware.url = "github:nixos/nixos-hardware";
nix-flatpak.url = "github:gmodena/nix-flatpak";
deploy-rs = {
url = "github:serokell/deploy-rs";
inputs.nixpkgs.follows = "nixpkgs";
};
sops-nix = {
url = "github:mic92/sops-nix";
inputs.nixpkgs.follows = "nixpkgs";
};
# Projetos nixificados
gelos-site = {
url = "github:gelos-icmc/site";
inputs.nixpkgs.follows = "nixpkgs";
};
gelos-identidade-visual = {
url = "github:gelos-icmc/identidade-visual";
inputs.nixpkgs.follows = "nixpkgs";
};
# Para o servidor de Minecraft
nix-minecraft = {
url = "github:ViniciusDMSantos/nix-minecraft";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = {
self,
nixpkgs,
nix-flatpak,
...
} @ inputs: let
inherit (self) outputs;
forAllSystems = nixpkgs.lib.genAttrs ["x86_64-linux" "aarch64-linux"];
in rec {
# Configuração da máquina
# Acessível por 'nixos-rebuild --flake .#galapagos'
nixosConfigurations = {
galapagos = nixpkgs.lib.nixosSystem {
modules = [./hosts/galapagos/configuration.nix];
specialArgs = {inherit inputs outputs;};
};
emperor = nixpkgs.lib.nixosSystem {
modules = [./hosts/emperor/configuration.nix];
specialArgs = {inherit inputs outputs;};
};
macaroni = nixpkgs.lib.nixosSystem {
modules = [./hosts/macaroni/configuration.nix];
specialArgs = {inherit inputs outputs;};
};
rockhopper = nixpkgs.lib.nixosSystem {
modules = [./hosts/rockhopper/configuration.nix];
specialArgs = {inherit inputs outputs;};
};
};
# Configuração do deploy-rs
# Explica o que dar deploy, e pra onde
deploy.nodes = let
activate = kind: config: inputs.deploy-rs.lib.${config.pkgs.system}.activate.${kind} config;
in {
galapagos = {
hostname = "galapagos.gelos.club";
sshUser = "admin";
sshOpts = ["-p" "2112"];
profiles.system = {
user = "root";
path = activate "nixos" nixosConfigurations.galapagos;
};
remoteBuild = true;
};
/* Não estamos usando no momento, devido ao ruído alto que ele gera na sala
emperor = {
hostname = "emperor.gelos.club";
sshUser = "admin";
sshOpts = ["-p" "2112"];
profiles.system = {
user = "root";
path = activate "nixos" nixosConfigurations.emperor;
};
remoteBuild = true;
};
*/
};
# Permite rodar 'nix run .#deploy' ou apenas 'nix run' para fazer deploy
apps = forAllSystems (system: rec {
deploy = {
type = "app";
program = "${nixpkgs.legacyPackages.${system}.deploy-rs}/bin/deploy";
};
default = deploy;
});
formatter = forAllSystems (system: nixpkgs.legacyPackages.${system}.alejandra);
};
}