d2a2baebc8
- login works - basic documentation
34 lines
511 B
Nix
34 lines
511 B
Nix
{
|
|
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";
|
|
};
|
|
}
|