Adds some audio utilities
This commit is contained in:
@@ -1,6 +1,7 @@
|
|||||||
{ pkgs, inputs, ... }:
|
{ pkgs, inputs, ... }:
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
|
./features/audio.nix
|
||||||
./features/shell.nix
|
./features/shell.nix
|
||||||
./features/terminal.nix
|
./features/terminal.nix
|
||||||
./features/hyprland.nix
|
./features/hyprland.nix
|
||||||
@@ -32,6 +33,7 @@
|
|||||||
killall
|
killall
|
||||||
ranger
|
ranger
|
||||||
|
|
||||||
|
|
||||||
# Networking
|
# Networking
|
||||||
dnsutils
|
dnsutils
|
||||||
socat
|
socat
|
||||||
|
|||||||
7
home-manager/features/audio.nix
Normal file
7
home-manager/features/audio.nix
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
{ pkgs, ... }:
|
||||||
|
{
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
pulseaudio # for pactl and other tools
|
||||||
|
pavucontrol # GUI volume control with lots of options
|
||||||
|
];
|
||||||
|
}
|
||||||
@@ -236,8 +236,9 @@
|
|||||||
split-monitor-workspaces = {
|
split-monitor-workspaces = {
|
||||||
# Keep the focus when reloading.
|
# Keep the focus when reloading.
|
||||||
keep_focused = true;
|
keep_focused = true;
|
||||||
# Don't pre-allocate workspaces.
|
# Allocate persistent workspaces. If this is off there are some bugs
|
||||||
enable_persistent_workspaces = false;
|
# when trying to move to a new workspace if it doesn't already exist.
|
||||||
|
enable_persistent_workspaces = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user