This commit is contained in:
Lilith 2025-03-24 02:29:46 +01:00
parent 9a16acca1b
commit 0deecc0aea
Signed by: lilith
GPG key ID: 8712A0F317C37175
6 changed files with 65 additions and 39 deletions

View file

@ -1,4 +1,10 @@
{ pkgs, config, lib, ...}: {
{
pkgs,
config,
lib,
...
}:
{
options.gaming.enable = lib.mkEnableOption "Enable steam and related software";
@ -17,6 +23,8 @@
gamemode.enable = true;
};
hardware.steam-hardware.enable = true;
environment = {
systemPackages = with pkgs; [
mangohud

View file

@ -22,16 +22,19 @@
popups = 0.8;
};
fonts = {
serif = {
package = pkgs.dejavu_fonts;
name = "DejaVu Serif";
};
fonts = rec {
# serif = {
# package = pkgs.dejavu_fonts;
# name = "DejaVu Serif";
# };
sansSerif = {
package = pkgs.dejavu_fonts;
name = "DejaVu Sans";
};
# sansSerif = {
# package = pkgs.dejavu_fonts;
# name = "DejaVu Sans";
# };
serif = monospace;
sansSerif = monospace;
monospace = {
package = pkgs.nerd-fonts.jetbrains-mono;