Files
Gabriel Fontes 9f65bca07e chore(paseo): remove paseo
Remove the service from atlas and maia, along with its flake input, module, and secret.

Assisted-by: pi (openai-codex/gpt-5.6-sol)
2026-07-13 16:29:03 -03:00

161 lines
4.2 KiB
Nix

{
description = "Foundry - my public NixOS/home-manager infrastructure monorepo";
nixConfig = {
extra-substituters = [
"https://cache.m7.rs"
];
extra-trusted-public-keys = [
"cache.m7.rs:kszZ/NSwE/TjhOcPPQ16IuUiuRSisdiIwhKZCxguaWg="
];
};
inputs = {
# Nix ecosystem
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
systems.url = "github:nix-systems/default-linux";
hardware = {
url = "github:nixos/nixos-hardware";
inputs.nixpkgs.follows = "nixpkgs";
};
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
impermanence = {
url = "github:nix-community/impermanence";
inputs.nixpkgs.follows = "nixpkgs";
inputs.home-manager.follows = "home-manager";
};
sops-nix = {
url = "github:mic92/sops-nix";
inputs.nixpkgs.follows = "nixpkgs";
};
nixos-mailserver = {
url = "gitlab:simple-nixos-mailserver/nixos-mailserver";
inputs.nixpkgs.follows = "nixpkgs";
};
nix-minecraft = {
url = "github:infinidoge/nix-minecraft";
inputs.nixpkgs.follows = "nixpkgs";
inputs.systems.follows = "systems";
};
disko = {
url = "github:nix-community/disko";
inputs.nixpkgs.follows = "nixpkgs";
};
lanzaboote = {
url = "github:nix-community/lanzaboote";
inputs.nixpkgs.follows = "nixpkgs";
};
# Third party programs, packaged with nix
firefox-addons = {
url = "gitlab:rycee/nur-expressions?dir=pkgs/firefox-addons";
inputs.nixpkgs.follows = "nixpkgs";
};
hytale = {
url = "github:TNAZEP/HytaleLauncherFlake";
inputs.nixpkgs.follows = "nixpkgs";
};
# My own programs, packaged with nix
website = {
url = "path:./projects/website";
inputs.nixpkgs.follows = "nixpkgs";
inputs.systems.follows = "systems";
};
};
outputs = {
self,
nixpkgs,
home-manager,
systems,
...
} @ inputs: let
inherit (self) outputs;
lib = let
base = nixpkgs.lib // home-manager.lib;
in
base
// {
colors = import ./lib/colors.nix {lib = base;};
material-you = import ./lib/material-you.nix {lib = base;};
};
forEachSystem = f: lib.genAttrs (import systems) (system: f pkgsFor.${system});
pkgsFor = lib.genAttrs (import systems) (
system:
import nixpkgs {
inherit system;
config.allowUnfree = true;
}
);
in {
inherit lib;
nixosModules = import ./modules/nixos;
homeManagerModules = import ./modules/home-manager;
overlays = import ./overlays {inherit inputs outputs;};
hydraJobs = import ./hydra.nix {inherit inputs outputs;};
packages = forEachSystem (pkgs: import ./pkgs {inherit pkgs;});
devShells = forEachSystem (pkgs: import ./shell.nix {inherit pkgs;});
formatter = forEachSystem (pkgs: pkgs.alejandra);
nixosConfigurations = {
# Main desktop
atlas = lib.nixosSystem {
modules = [./hosts/atlas];
specialArgs = {
inherit inputs outputs;
};
};
# Living room desktop
pleione = lib.nixosSystem {
modules = [./hosts/pleione];
specialArgs = {
inherit inputs outputs;
};
};
# Personal laptop (Framework 13)
maia = lib.nixosSystem {
modules = [./hosts/maia];
specialArgs = {
inherit inputs outputs;
};
};
# Core server (Vultr)
alcyone = lib.nixosSystem {
modules = [./hosts/alcyone];
specialArgs = {
inherit inputs outputs;
};
};
# Build and game server (Oracle)
celaeno = lib.nixosSystem {
modules = [./hosts/celaeno];
specialArgs = {
inherit inputs outputs;
};
};
# Build and game server (Magalu Cloud)
taygeta = lib.nixosSystem {
modules = [./hosts/taygeta];
specialArgs = {
inherit inputs outputs;
};
};
# Media server (RPi)
merope = lib.nixosSystem {
modules = [./hosts/merope];
specialArgs = {
inherit inputs outputs;
};
};
};
homeConfigurations = {};
};
}