Compare commits
1 Commits
94f0e793d7
...
3be9cbe622
| Author | SHA1 | Date | |
|---|---|---|---|
| 3be9cbe622 |
@@ -168,6 +168,7 @@
|
|||||||
bibata-cursors
|
bibata-cursors
|
||||||
catppuccin-gtk
|
catppuccin-gtk
|
||||||
waybar
|
waybar
|
||||||
|
unstable.ironbar
|
||||||
hyprlock
|
hyprlock
|
||||||
cava
|
cava
|
||||||
cmatrix
|
cmatrix
|
||||||
@@ -175,7 +176,8 @@
|
|||||||
(input {
|
(input {
|
||||||
package = "chataigne";
|
package = "chataigne";
|
||||||
})
|
})
|
||||||
wlogout
|
wlogout # To be removed
|
||||||
|
wleave
|
||||||
wpaperd
|
wpaperd
|
||||||
kando
|
kando
|
||||||
oh-my-posh
|
oh-my-posh
|
||||||
|
|||||||
@@ -54,6 +54,61 @@
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# Pipewire stuff
|
||||||
|
services.pipewire.extraConfig.pipewire."97-null-sink" = {
|
||||||
|
"context.objects" = [
|
||||||
|
{
|
||||||
|
factory = "adapter";
|
||||||
|
args = {
|
||||||
|
"factory.name" = "support.null-audio-sink";
|
||||||
|
"node.name" = "Null-Sink";
|
||||||
|
"node.description" = "Null Sink";
|
||||||
|
"media.class" = "Audio/Sink";
|
||||||
|
"audio.position" = "FL,FR";
|
||||||
|
};
|
||||||
|
}
|
||||||
|
{
|
||||||
|
factory = "adapter";
|
||||||
|
args = {
|
||||||
|
"factory.name" = "support.null-audio-sink";
|
||||||
|
"node.name" = "Null-Source";
|
||||||
|
"node.description" = "Null Source";
|
||||||
|
"media.class" = "Audio/Source";
|
||||||
|
"audio.position" = "FL,FR";
|
||||||
|
};
|
||||||
|
}
|
||||||
|
];
|
||||||
|
};
|
||||||
|
services.pipewire.extraConfig.pipewire."98-virtual-mic" = {
|
||||||
|
"context.modules" = [
|
||||||
|
{
|
||||||
|
name = "libpipewire-module-loopback";
|
||||||
|
args = {
|
||||||
|
"audio.position" = "FL,FR";
|
||||||
|
"node.description" = "Mumble as Microphone";
|
||||||
|
"capture.props" = {
|
||||||
|
# Mumble's output node name.
|
||||||
|
"node.target" = "Mumble";
|
||||||
|
"node.passive" = true;
|
||||||
|
};
|
||||||
|
"playback.props" = {
|
||||||
|
"node.name" = "Virtual-Mumble-Microphone";
|
||||||
|
"media.class" = "Audio/Source";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
|
# Mumble server
|
||||||
|
services.murmur = {
|
||||||
|
enable = true;
|
||||||
|
bandwidth = 540000;
|
||||||
|
bonjour = true;
|
||||||
|
password = "mumblepass";
|
||||||
|
autobanTime = 0;
|
||||||
|
};
|
||||||
|
|
||||||
# Local User
|
# Local User
|
||||||
users.users.user01 = {
|
users.users.user01 = {
|
||||||
extraGroups = [
|
extraGroups = [
|
||||||
@@ -62,7 +117,9 @@
|
|||||||
];
|
];
|
||||||
packages = with pkgs; [
|
packages = with pkgs; [
|
||||||
bottles
|
bottles
|
||||||
|
mumble
|
||||||
ferdium
|
ferdium
|
||||||
|
audacity
|
||||||
android-tools
|
android-tools
|
||||||
anki
|
anki
|
||||||
vesktop
|
vesktop
|
||||||
|
|||||||
Reference in New Issue
Block a user