refactor ft home configuration

This commit is contained in:
2025-02-10 17:36:28 +01:00
parent 213fa0136f
commit 650d422d21
17 changed files with 106 additions and 281 deletions

View File

@ -0,0 +1,17 @@
{ config, lib, pkgs, ... }:
{
options.mods.game.enable = lib.mkOption {
type = lib.types.bool;
default = true;
description = "install packages for games (except steam , it's installed systemwide)";
};
config = lib.mkIf config.mods.game.enable {
home.packages = with pkgs;[
lutris
mangohud
moonlight-qt
];
};
}