5 lines
155 B
Nix
5 lines
155 B
Nix
{ self, inputs, ... }: {
|
|
flake.nixosConfigurations.crow = inputs.nixpkgs.lib.nixosSystem {
|
|
modules = [ self.nixosModules.crowConfiguration ];
|
|
};
|
|
}
|