mirror of
https://github.com/nmasur/dotfiles
synced 2025-07-06 02:40:14 +00:00
more flakiness
This commit is contained in:
@ -6,7 +6,7 @@ let cfg = config.modules.gaming.leagueoflegends;
|
||||
in {
|
||||
|
||||
options.modules.gaming.leagueoflegends = {
|
||||
enable = mkEnableOption "leagueoflegends";
|
||||
enable = mkEnableOption "League of Legends";
|
||||
};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
|
@ -5,7 +5,7 @@ let cfg = config.modules.gaming.lutris;
|
||||
|
||||
in {
|
||||
|
||||
options.modules.gaming.lutris = { enable = mkEnableOption "lutris"; };
|
||||
options.modules.gaming.lutris = { enable = mkEnableOption "Lutris"; };
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
environment.systemPackages = with pkgs; [ lutris amdvlk wine ];
|
||||
|
@ -5,7 +5,7 @@ let cfg = config.modules.gaming.steam;
|
||||
|
||||
in {
|
||||
|
||||
options.modules.gaming.steam = { enable = mkEnableOption "steam"; };
|
||||
options.modules.gaming.steam = { enable = mkEnableOption "Steam"; };
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
hardware.steam-hardware.enable = true;
|
||||
|
@ -1,10 +1,13 @@
|
||||
{ config, pkgs, lib, ... }:
|
||||
|
||||
{
|
||||
let gui = config.gui;
|
||||
|
||||
in {
|
||||
|
||||
config = {
|
||||
services.keybase.enable = true;
|
||||
services.kbfs.enable = true;
|
||||
|
||||
# home.packages = with pkgs lib; [ (mkIf config.gui keybase-gui) ];
|
||||
# home.packages = with lib; with pkgs; [ (mkIf gui.enable keybase-gui) ];
|
||||
};
|
||||
}
|
||||
|
Reference in New Issue
Block a user