mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-09 23:22:57 +00:00
more refactoring with default.nix
This commit is contained in:
parent
523a53f607
commit
9e12221b43
@ -1,5 +1,7 @@
|
|||||||
{ config, ... }: {
|
{ config, ... }: {
|
||||||
|
|
||||||
|
imports = [ ./leagueoflegends.nix ./lutris.nix ./steam.nix ];
|
||||||
|
|
||||||
config = {
|
config = {
|
||||||
hardware.opengl = {
|
hardware.opengl = {
|
||||||
enable = true;
|
enable = true;
|
@ -1,9 +1,15 @@
|
|||||||
{ config, pkgs, ... }:
|
{ config, pkgs, lib, ... }:
|
||||||
|
|
||||||
{
|
with lib;
|
||||||
imports = [ ./common.nix ./lutris.nix ];
|
let cfg = config.modules.gaming.leagueoflegends;
|
||||||
|
|
||||||
config = {
|
in {
|
||||||
|
|
||||||
|
options.modules.gaming.leagueoflegends = {
|
||||||
|
enable = mkEnableOption "leagueoflegends";
|
||||||
|
};
|
||||||
|
|
||||||
|
config = mkIf cfg.enable {
|
||||||
|
|
||||||
# League of Legends anti-cheat
|
# League of Legends anti-cheat
|
||||||
boot.kernel.sysctl = { "abi.vsyscall32" = 0; };
|
boot.kernel.sysctl = { "abi.vsyscall32" = 0; };
|
||||||
|
@ -1,9 +1,14 @@
|
|||||||
{ config, pkgs, ... }:
|
{ config, pkgs, lib, ... }:
|
||||||
|
|
||||||
{
|
with lib;
|
||||||
|
let cfg = config.modules.gaming.lutris;
|
||||||
|
|
||||||
imports = [ ./common.nix ];
|
in {
|
||||||
|
|
||||||
config = { environment.systemPackages = with pkgs; [ lutris amdvlk wine ]; };
|
options.modules.gaming.lutris = { enable = mkEnableOption "lutris"; };
|
||||||
|
|
||||||
|
config = mkIf cfg.enable {
|
||||||
|
environment.systemPackages = with pkgs; [ lutris amdvlk wine ];
|
||||||
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -1,8 +1,13 @@
|
|||||||
{ config, pkgs, ... }: {
|
{ config, pkgs, lib, ... }:
|
||||||
|
|
||||||
imports = [ ./common.nix ];
|
with lib;
|
||||||
|
let cfg = config.modules.gaming.steam;
|
||||||
|
|
||||||
config = {
|
in {
|
||||||
|
|
||||||
|
options.modules.gaming.steam = { enable = mkEnableOption "steam"; };
|
||||||
|
|
||||||
|
config = mkIf cfg.enable {
|
||||||
hardware.steam-hardware.enable = true;
|
hardware.steam-hardware.enable = true;
|
||||||
environment.systemPackages = with pkgs; [ steam ];
|
environment.systemPackages = with pkgs; [ steam ];
|
||||||
};
|
};
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
/etc/nixos/hardware-configuration.nix
|
/etc/nixos/hardware-configuration.nix
|
||||||
../modules/system/timezone.nix
|
../modules/system/timezone.nix
|
||||||
../modules/system/doas.nix
|
../modules/system/doas.nix
|
||||||
../modules/gaming/steam.nix
|
../modules/gaming
|
||||||
];
|
];
|
||||||
|
|
||||||
nixpkgs.config.allowUnfree = true;
|
nixpkgs.config.allowUnfree = true;
|
||||||
|
Loading…
Reference in New Issue
Block a user