nvf changes

This commit is contained in:
Charlie Root 2024-07-06 15:53:16 +02:00
commit 5548480371
42 changed files with 261 additions and 154 deletions

View file

@ -1,5 +1,10 @@
{ config, lib, pkgs, ... }:
let inherit (config.modules.other.system) username;
{
config,
lib,
pkgs,
...
}: let
inherit (config.modules.other.system) username;
in {
hardware.bluetooth = {
enable = true;
@ -11,8 +16,8 @@ in {
# Bluetooth headset media control buttons
systemd.user.services.mpris-proxy = {
description = "Mpris proxy";
after = [ "network.target" "sound.target" ];
wantedBy = [ "default.target" ];
after = ["network.target" "sound.target"];
wantedBy = ["default.target"];
serviceConfig.ExecStart = "${pkgs.bluez}/bin/mpris-proxy";
};
}

View file

@ -7,7 +7,7 @@
hardware.graphics = {
enable = true;
package = pkgs.mesa.drivers;
# driSupport32Bit = true;
# driSupport32Bit = true;
};
hardware.nvidia = {
modesetting.enable = true;