{ description = '' My personal NixOS Flake templates! For questions just DM me on X: https://twitter.com/@m3tam3re There is also some NIXOS content on my YT channel: https://www.youtube.com/@m3tam3re One of the best ways to learn NIXOS is to read other peoples configurations. I have personally learned a lot from Gabriel Fontes configs: https://github.com/Misterio77/nix-starter-configs ''; inputs = { nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; }; outputs = { nixpkgs, ... }: let systems = [ "aarch64-linux" "i686-linux" "x86_64-linux" "aarch64-darwin" "x86_64-darwin" ]; forAllSystems = nixpkgs.lib.genAttrs systems; in { templates = { nixos-standard = { description = '' NIXOS Standard - contains the basic flake structure I use to configure multiple machines and user environtments. ''; path = ./nixos/standard; }; }; formatter = forAllSystems (system: nixpkgs.legacyPackages.${system}.alejandra); }; }