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 78789f6e87
commit defc218b49
WARNING! Although there is a key with this ID in the database it does not verify this commit! This commit is SUSPICIOUS.
GPG key ID: 1763BB530F50279E
12 changed files with 175 additions and 103 deletions

View file

@ -31,6 +31,7 @@ in
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
wireplumber.configPackages = [
(pkgs.writeTextDir "share/wireplumber/wireplumber.conf.d/11-bluetooth-policy.conf" ''
wireplumber.settings = {

View file

@ -25,6 +25,7 @@ in
General = {
Experimental = true;
KernelExperimental = true;
Enable = "Source,Sink,Media,Socket";
};
};
};

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;