This commit is contained in:
mjallen18
2025-02-20 10:12:37 -06:00
commit 3467cccc24
6 changed files with 703 additions and 0 deletions

21
flake.nix Normal file
View File

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