Files
nix-steam-rom-manager/flake.nix
mjallen18 3467cccc24 init
2025-02-20 10:12:37 -06:00

21 lines
590 B
Nix

{
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;
homeManagerModules.steam-rom-manager = import ./modules/steam-rom-manager;
};
}