treewide: initial commit

This commit is contained in:
2026-04-18 16:28:25 -04:00
commit 75532a931c
18 changed files with 1237 additions and 0 deletions
+35
View File
@@ -0,0 +1,35 @@
{
inputs,
self,
withSystem,
...
}:
let
mkSystem =
name: system:
withSystem system (
{ inputs', self', ... }:
inputs.nixpkgs.lib.nixosSystem {
inherit system;
specialArgs = {
inherit
inputs
inputs'
self
self'
;
};
modules = [
"${self}/nixos/common.nix"
"${self}/nixos/hosts/${name}"
{ host = { inherit name; }; }
];
}
);
in
{
flake.nixosConfigurations = {
tuxcord-ca = mkSystem "tuxcord-ca" "x86_64-linux";
};
}