init: ui bootstrapping nextjs

This commit is contained in:
Johannes Kirschbauer
2023-08-05 11:42:48 +02:00
parent 9fc8595ce9
commit c9b19b5060
25 changed files with 14167 additions and 1 deletions

View File

@@ -3,6 +3,8 @@
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
floco.url = "github:aakropotkin/floco";
floco.inputs.nixpkgs.follows = "nixpkgs";
disko.url = "github:nix-community/disko";
disko.inputs.nixpkgs.follows = "nixpkgs";
nixos-generators.url = "github:nix-community/nixos-generators";
@@ -24,9 +26,13 @@
./formatter.nix
./templates/flake-module.nix
./templates/python-project/flake-module.nix
./pkgs/flake-module.nix
./pkgs/clan-cli/flake-module.nix
./pkgs/installer/flake-module.nix
./pkgs/flake-module.nix
./pkgs/ui/flake-module.nix
./lib/flake-module.nix
({ self, lib, ... }: {
flake.nixosModules = lib.mapAttrs (_: nix: { imports = [ nix ]; }) (self.lib.findNixFiles ./nixosModules);