Noctalia config + add pwvucontrol for audio control

This commit is contained in:
KnightArtorias 2025-12-17 18:27:43 +00:00
parent f4b76d4ae4
commit 218b6ffe8a
4 changed files with 56 additions and 5 deletions

View file

Before

Width:  |  Height:  |  Size: 3.4 KiB

After

Width:  |  Height:  |  Size: 3.4 KiB

View file

@ -1,4 +1,4 @@
{ pkgs, inputs, ... }: { pkgs, inputs, vars, ... }:
{ {
imports = [ imports = [
@ -11,8 +11,9 @@
settings = { settings = {
bar = { bar = {
density = "compact"; density = "compact";
position = "right"; position = "top";
showCapsule = false; floating = true;
showCapsule = true;
widgets = { widgets = {
left = [ left = [
{ {
@ -25,6 +26,12 @@
{ {
id = "Bluetooth"; id = "Bluetooth";
} }
{
id = "ActiveWindow";
}
{
id = "MediaMini";
}
]; ];
center = [ center = [
{ {
@ -34,10 +41,19 @@
} }
]; ];
right = [ right = [
{
id = "Volume";
}
{
id = "Tray";
}
{
id = "NotificationHistory";
}
{ {
id = "Clock";
formatHorizontal = "HH:mm"; formatHorizontal = "HH:mm";
formatVertical = "HH mm"; formatVertical = "HH mm";
id = "Clock";
useMonospacedFont = true; useMonospacedFont = true;
usePrimaryColor = true; usePrimaryColor = true;
} }
@ -47,13 +63,40 @@
colorSchemes.predefinedScheme = "Monochrome"; colorSchemes.predefinedScheme = "Monochrome";
general = { general = {
avatarImage = "../../common/nest.webp"; avatarImage = "$NIX_FLAKE_PATH/home-manager/roles/common/${vars.user}.webp";
radiusRatio = 0.2; radiusRatio = 0.2;
}; };
location = { location = {
monthBeforeDay = true; monthBeforeDay = true;
name = "Severn, Maryland"; name = "Severn, Maryland";
useFahrenheit = true;
use12hourFormat = true;
};
screenRecorder = {
directory = "$HOME/Videos/ScreenRecordings";
};
wallpaper = {
directory = "$NIX_FLAKE_PATH/home-manager/roles/desktop/common/wallpapers";
randomEnabled = true;
}
dock = {
enabled = false;
};
network = {
wifiEnabled = true;
};
templates = {
qt = true;
alactirry = true;
fuzzel = true;
discord = true;
niri = true;
}; };
}; };
}; };

View file

@ -1,5 +1,6 @@
{ {
imports = [ imports = [
./steam.nix ./steam.nix
./pwvucontrol.nix
]; ];
} }

View file

@ -0,0 +1,7 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
pwvucontrol
];
}