{ description = "Steam ROM Manager Home Manager Module"; inputs = { nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; home-manager = { url = "github:nix-community/home-manager"; inputs.nixpkgs.follows = "nixpkgs"; }; }; outputs = { self, nixpkgs, home-manager, ... }: let supportedSystems = [ "x86_64-linux" "aarch64-linux" ]; forAllSystems = nixpkgs.lib.genAttrs supportedSystems; in { homeManagerModules.default = import ./modules/steam-rom-manager; homeManagerModules.steam-rom-manager = import ./modules/steam-rom-manager; }; }