13 lines
202 B
Nix
13 lines
202 B
Nix
{
|
|
self,
|
|
inputs,
|
|
...
|
|
}: {
|
|
flake.nixosConfigurations.HACKSTATION = inputs.nixpkgs.lib.nixosSystem {
|
|
modules = with self.nixosModules; [
|
|
core
|
|
hackstationConfiguration
|
|
];
|
|
};
|
|
}
|