More flake fixes

This commit is contained in:
Geoffrey Frogeye 2024-01-07 12:54:43 +01:00
parent 6d98d85642
commit 597b50ebef
Signed by: geoffrey
GPG key ID: C72403E7F82E6AD8
13 changed files with 133 additions and 27 deletions

View file

@ -29,7 +29,10 @@
];
nixpkgs.config.allowUnfree = true;
nix.settings.experimental-features = [ "nix-command" "flakes" ];
nix.settings = {
experimental-features = [ "nix-command" "flakes" ];
warn-dirty = false;
};
programs = {
adb.enable = true;

View file

@ -1,7 +1,8 @@
{ pkgs, lib, config, ... }:
{
config = lib.mkIf config.frogeye.gaming {
programs.steam.enable = true;
hardware.opengl.driSupport32Bit = true; # Enables support for 32bit libs that steam uses
};
config = lib.mkIf config.frogeye.gaming
{
programs.steam.enable = true;
hardware.opengl.driSupport32Bit = true; # Enables support for 32bit libs that steam uses
};
}