improvement: git, hyprland, steam

added gitbutler, introduced maintenance for nixpkgs, cleaned up some files, keyring should now unlock ad login
This commit is contained in:
Christoph Hollizeck 2024-10-08 00:43:56 +02:00
parent dff4f4557b
commit 0f656d193c
12 changed files with 175 additions and 103 deletions

View file

@ -1,15 +1,22 @@
{ lib, config, ... }:
with lib;
with lib.wyrdgard;
{
lib,
config,
pkgs,
namespace,
...
}:
let
cfg = config.wyrdgard.system.hardware.gpu.nvidia;
inherit (lib) mkIf mkEnableOption;
cfg = config.${namespace}.system.hardware.gpu.nvidia;
in
{
options.wyrdgard.system.hardware.gpu.nvidia = with types; {
options.${namespace}.system.hardware.gpu.nvidia = {
enable = mkEnableOption "Enable Nvidia GPU";
};
config = mkIf cfg.enable {
environment.systemPackages = [ pkgs.nvidia-vaapi-driver ];
hardware.graphics = {
enable = true;
enable32Bit = true;