initial commit

- login works
- basic documentation
This commit is contained in:
2026-05-09 06:28:09 +02:00
commit d2a2baebc8
16 changed files with 2524 additions and 0 deletions
+33
View File
@@ -0,0 +1,33 @@
{
inputs,
self,
withSystem,
...
}:
let
mkSystem =
system:
withSystem system (
{ inputs', self', ... }:
inputs.nixpkgs.lib.nixosSystem {
inherit system;
specialArgs = {
inherit
inputs
inputs'
self
self'
;
};
modules = [
"${self}/tests/nixos/configuration.nix"
];
}
);
in
{
flake.nixosConfigurations = {
default = mkSystem "x86_64-linux";
};
}