nix-infra/flake.nix

124 lines
4.1 KiB
Nix
Raw Normal View History

2023-12-17 13:33:15 +00:00
{
inputs = {
nixpkgs.url = "nixpkgs/nixos-23.11";
nixpkgs-unstable.url = "nixpkgs/nixpkgs-unstable";
colmena = {
url = "github:zhaofengli/colmena";
inputs.nixpkgs.follows = "nixpkgs";
};
2023-12-17 13:33:15 +00:00
home-manager = {
url = "github:nix-community/home-manager/release-23.11";
inputs.nixpkgs.follows = "nixpkgs";
};
cherrykitten-website = {
url = "git+https://git.cherrykitten.dev/sammy/cherrykitten.dev?ref=nix";
inputs.nixpkgs.follows = "nixpkgs";
};
2023-12-17 13:33:15 +00:00
};
2024-03-24 18:02:45 +00:00
outputs = inputs @ { self, nixpkgs, nixpkgs-unstable, home-manager, colmena, ... }:
2024-03-24 18:02:29 +00:00
let
inherit (self) outputs;
2024-03-24 18:02:30 +00:00
systems = [ "aarch64-linux" "i686-linux" "x86_64-linux" "aarch64-darwin" "x86_64-darwin" ];
2024-03-24 18:02:29 +00:00
forAllSystems = lib.genAttrs systems;
lib = nixpkgs.lib // home-manager.lib;
in
rec {
2024-03-24 18:02:29 +00:00
inherit lib;
formatter = forAllSystems (system: nixpkgs.legacyPackages.${system}.nixpkgs-fmt);
2024-03-24 18:02:29 +00:00
devShells = forAllSystems (system:
2024-04-06 20:43:22 +00:00
let
pkgs = import nixpkgs { system = system; };
packages = [ pkgs.nix pkgs.colmena pkgs.just pkgs.git pkgs.home-manager pkgs.pass pkgs.nixos-rebuild ];
in
{
2024-03-24 18:02:32 +00:00
default = pkgs.mkShell {
2024-04-06 20:43:22 +00:00
nativeBuildInputs = packages;
2024-03-24 18:02:32 +00:00
shellHook = "exec $SHELL";
};
2024-04-06 20:43:22 +00:00
hcloud = pkgs.mkShell {
nativeBuildInputs = packages ++ [ pkgs.hcloud ];
shellHook = ''
export HCLOUD_TOKEN=$(pass services/hcloud/api_token)
exec $SHELL
'';
};
2024-03-24 18:02:30 +00:00
});
colmena =
let
hosts = lib.genAttrs (builtins.attrNames (builtins.readDir ./hosts)) (name: { });
in
{
meta = {
description = "All my NixoS machines";
specialArgs = {
inherit inputs outputs;
nodes = colmenaHive.nodes;
pkgs-unstable = import nixpkgs-unstable { system = "x86_64-linux"; };
};
nixpkgs = import nixpkgs { system = "x86_64-linux"; };
2024-03-24 18:02:32 +00:00
};
2024-03-24 18:02:25 +00:00
defaults = { lib, config, name, nodes, ... }: {
2024-04-20 11:26:44 +00:00
imports = [ ./hosts/${name} ./profiles/base (import ./overlays) ];
2024-03-24 18:02:32 +00:00
options.cherrykitten = {
primaryIPv4 = lib.mkOption {
type = lib.types.nullOr lib.types.str;
default =
if (config.networking.interfaces ? eth0) then
(builtins.elemAt config.networking.interfaces.eth0.ipv4.addresses 0).address
else null;
};
primaryIPv6 = lib.mkOption {
type = lib.types.nullOr lib.types.str;
default =
if (config.networking.interfaces ? eth0) then
(builtins.elemAt config.networking.interfaces.eth0.ipv6.addresses 0).address
else null;
};
};
config = {
networking.hostName = name;
networking.domain = "cherrykitten.xyz";
home-manager.extraSpecialArgs = {
inherit inputs outputs;
pkgs-unstable = import nixpkgs-unstable { system = "x86_64-linux"; };
};
};
2024-03-24 18:02:32 +00:00
};
} // hosts;
2024-03-24 18:02:32 +00:00
colmenaHive = inputs.colmena.lib.makeHive colmena;
2024-03-24 18:02:30 +00:00
nixosConfigurations = {
iso = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [ home-manager.nixosModules.home-manager ./profiles/iso ];
};
} // colmenaHive.nodes;
2024-04-01 18:23:27 +00:00
packages.x86_64-linux.iso = self.nixosConfigurations.iso.config.system.build.isoImage;
2024-03-24 18:02:45 +00:00
2024-03-24 18:03:19 +00:00
homeConfigurations =
2024-03-24 18:02:30 +00:00
let
pkgs = import nixpkgs { system = "x86_64-linux"; };
in
lib.genAttrs (builtins.attrNames (builtins.readDir ./users)) (name: lib.homeManagerConfiguration {
inherit pkgs;
modules = [ ./users/${name}/home.nix ];
extraSpecialArgs = {
inherit inputs outputs;
pkgs-unstable = import nixpkgs-unstable { system = "x86_64-linux"; };
};
});
2023-12-17 13:33:15 +00:00
};
}