10 lines
251 B
Nix
10 lines
251 B
Nix
{
|
|
description = "Vue 3 webapp NixOS module";
|
|
|
|
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
|
|
|
outputs = { self, nixpkgs }: {
|
|
nixosModules.webapp = import ./webapp.nix;
|
|
nixosModules.default = self.nixosModules.webapp;
|
|
};
|
|
}
|