mirror of
https://github.com/harryssecret/homelab-nix.git
synced 2025-01-18 13:29:32 +01:00
more goober config
This commit is contained in:
parent
c7ff941eb4
commit
5a061376b8
|
@ -1,4 +1,4 @@
|
|||
alias gocode="cd ~/Documents/Code/"
|
||||
eval $(zoxide init bash)
|
||||
|
||||
kittysay meow
|
||||
eval "$(zoxide init bash)"
|
||||
|
|
|
@ -114,6 +114,13 @@
|
|||
};
|
||||
|
||||
};
|
||||
programs.zoxide.enable = true;
|
||||
programs.zoxide.enableBashIntegration= true;
|
||||
programs.zoxide.options = [
|
||||
"--cmd cd"
|
||||
];
|
||||
|
||||
services.mpris-proxy.enable = true;
|
||||
|
||||
# Home Manager can also manage your environment variables through
|
||||
# 'home.sessionVariables'. These will be explicitly sourced when using a
|
||||
|
|
|
@ -1,26 +1,7 @@
|
|||
{config, pkgs, ...}: {
|
||||
hardware.bluetooth = { enable = true; # enables support for Bluetooth
|
||||
|
||||
hardware.bluetooth = {
|
||||
enable = true; # enables support for Bluetooth
|
||||
powerOnBoot = true; # powers up the default Bluetooth controller on boot
|
||||
};
|
||||
services.blueman.enable = true;
|
||||
|
||||
systemd.user.services.mpris-proxy = {
|
||||
description = "Mpris proxy";
|
||||
after = [ "network.target" "sound.target" ];
|
||||
wantedBy = [ "default.target" ];
|
||||
serviceConfig.ExecStart = "${pkgs.bluez}/bin/mpris-proxy";
|
||||
};
|
||||
|
||||
hardware.bluetooth.settings = {
|
||||
General = {
|
||||
Experimental = true;
|
||||
};
|
||||
};
|
||||
|
||||
services.pipewire.wireplumber.extraConfig."11-bluetooth-policy" = {
|
||||
"wireplumber.settings" = {
|
||||
"bluetooth.autoswitch-to-headset-profile" = false;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
alsa.enable = true;
|
||||
alsa.support32Bit = true;
|
||||
pulse.enable = true;
|
||||
jack.enable = true;
|
||||
#jack.enable = true;
|
||||
|
||||
wireplumber.extraConfig."10-bluez" = {
|
||||
"monitor.bluez.properties" = {
|
||||
|
@ -22,7 +22,11 @@
|
|||
};
|
||||
};
|
||||
};
|
||||
|
||||
services.pipewire.wireplumber.extraConfig."11-bluetooth-policy" = {
|
||||
"wireplumber.settings" = {
|
||||
"bluetooth.autoswitch-to-headset-profile" = false;
|
||||
};
|
||||
};
|
||||
environment.systemPackages = [
|
||||
pkgs.pwvucontrol
|
||||
];
|
||||
|
|
Loading…
Reference in a new issue