Initial commit: Vue 3 webapp NixOS module

This commit is contained in:
padreug 2026-01-15 12:57:23 +01:00
commit b30b37d5ce
3 changed files with 253 additions and 0 deletions

10
flake.nix Normal file
View file

@ -0,0 +1,10 @@
{
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;
};
}