Compare commits
2 Commits
87c1617885
...
6663ea8286
| Author | SHA1 | Date | |
|---|---|---|---|
| 6663ea8286 | |||
| 5d43285e9e |
@@ -40,10 +40,6 @@
|
|||||||
htop # process monitor
|
htop # process monitor
|
||||||
pciutils # lspci etc.
|
pciutils # lspci etc.
|
||||||
];
|
];
|
||||||
|
|
||||||
sessionVariables = {
|
|
||||||
JAVA_HOME = "";
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
{ pkgs, ... }:
|
{ config, pkgs, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
];
|
];
|
||||||
|
|
||||||
home = {
|
home = {
|
||||||
packages = with pkgs.unstable; [
|
packages = with pkgs.unstable; [
|
||||||
dbeaver-bin
|
dbeaver-bin
|
||||||
@@ -14,5 +14,9 @@
|
|||||||
steam-run
|
steam-run
|
||||||
jetbrains.idea-community
|
jetbrains.idea-community
|
||||||
];
|
];
|
||||||
|
|
||||||
|
sessionVariables = {
|
||||||
|
GOPATH = "${config.home.homeDirectory}/data/go";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -8,14 +8,34 @@
|
|||||||
# If you want to use JACK applications, uncomment this
|
# If you want to use JACK applications, uncomment this
|
||||||
#jack.enable = true;
|
#jack.enable = true;
|
||||||
|
|
||||||
wireplumber.extraConfig.bluetoothEnhancements = {
|
wireplumber.extraConfig = {
|
||||||
"monitor.bluez.properties" = {
|
bluetoothEnhancements = {
|
||||||
"bluez5.enable-sbc-xq" = true;
|
"monitor.bluez.properties" = {
|
||||||
"bluez5.enable-msbc" = true;
|
"bluez5.enable-sbc-xq" = true;
|
||||||
"bluez5.enable-hw-volume" = true;
|
"bluez5.enable-msbc" = true;
|
||||||
"bluez5.roles" = [ "hsp_hs" "hsp_ag" "hfp_hf" "hfp_ag" ];
|
"bluez5.enable-hw-volume" = true;
|
||||||
|
"bluez5.roles" = [ "hsp_hs" "hsp_ag" "hfp_hf" "hfp_ag" ];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
extraConfig."99-disable-suspend" = {
|
||||||
|
"monitor.alsa.rules" = [
|
||||||
|
{
|
||||||
|
matches = [
|
||||||
|
{
|
||||||
|
"node.name" = "alsa_output.usb-ASUSTeK_Xonar_SoundCard-00.iec958-stereo";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
actions = {
|
||||||
|
update-props = {
|
||||||
|
"session.suspend-timeout-seconds" = 0;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -49,7 +49,7 @@
|
|||||||
};
|
};
|
||||||
|
|
||||||
defaultGateway = {
|
defaultGateway = {
|
||||||
address = "10.7.43.1";
|
address = "10.7.43.30";
|
||||||
interface = "eno1";
|
interface = "eno1";
|
||||||
# interface = "br0";
|
# interface = "br0";
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user