feat: migrate lutris

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

View file

@ -1,6 +1,7 @@
{
imports = [
./fish.nix
./lutris.nix
./nh.nix
];
}

View file

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