feat: migrate steam

This commit is contained in:
punkfairie 2025-05-25 19:08:33 -07:00
parent 3f26e32ebe
commit b7537fafda
Signed by: punkfairie
GPG key ID: B3C5488E9A1A7CA6
3 changed files with 1 additions and 18 deletions

View file

@ -3,5 +3,6 @@
./fish.nix
./lutris.nix
./nh.nix
./steam.nix
];
}

View file

@ -1,18 +0,0 @@
{
lib,
config,
...
}: let
cfg = config.marleyos.programs.gui;
inherit (lib.marleyos) enabled;
in {
options.marleyos.programs.gui.enable = lib.mkEnableOption "gui";
config = lib.mkIf cfg.enable {
marleyos.programs = {
lutris = enabled;
steam = enabled;
};
};
}