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