flake/flake.nix
uku e9ceb852f9
refactor flake, part 2
now using a homemade `mkSystem` function to make systems more identical
thanks to leah for telling me about genAttrs

note to future self: this is the commit where everything started going to shit.
this is the moment in time where i decided nix was perfection.
this is the precise timestamp in which i found out that there's no coming back from nix.

i bid you farewell, old uku.
2023-11-13 15:54:47 +01:00

61 lines
1.3 KiB
Nix

{
description = "example flake idk";
inputs = {
nixpkgs.url = "nixpkgs/nixos-unstable";
flake-parts = {
url = "github:hercules-ci/flake-parts";
inputs.nixpkgs-lib.follows = "nixpkgs";
};
ragenix = {
url = "github:yaxitech/ragenix";
inputs.nixpkgs.follows = "nixpkgs";
};
lanzaboote = {
url = "github:nix-community/lanzaboote";
inputs = {
nixpkgs.follows = "nixpkgs";
flake-parts.follows = "flake-parts";
};
};
getchvim = {
url = "github:getchoo/getchvim";
inputs = {
nixpkgs.follows = "nixpkgs";
parts.follows = "flake-parts";
};
};
};
outputs = {
nixpkgs,
ragenix,
lanzaboote,
...
} @ inputs: let
mkSystem = name:
nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
./common.nix
./${name}
./${name}/hardware-configuration.nix
{networking.hostName = name;}
ragenix.nixosModules.default
lanzaboote.nixosModules.lanzaboote
];
specialArgs = inputs;
};
in {
nixosConfigurations = nixpkgs.lib.genAttrs ["fuji" "kilimandjaro"] mkSystem;
formatter.x86_64-linux = nixpkgs.legacyPackages.x86_64-linux.alejandra;
};
}