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 = [
@ -11,8 +11,9 @@
settings = {
bar = {
density = "compact";
position = "right";
showCapsule = false;
position = "top";
floating = true;
showCapsule = true;
widgets = {
left = [
{
@ -25,6 +26,12 @@
{
id = "Bluetooth";
}
{
id = "ActiveWindow";
}
{
id = "MediaMini";
}
];
center = [
{
@ -34,10 +41,19 @@
}
];
right = [
{
id = "Volume";
}
{
id = "Tray";
}
{
id = "NotificationHistory";
}
{
id = "Clock";
formatHorizontal = "HH:mm";
formatVertical = "HH mm";
id = "Clock";
useMonospacedFont = true;
usePrimaryColor = true;
}
@ -47,13 +63,40 @@
colorSchemes.predefinedScheme = "Monochrome";
general = {
avatarImage = "../../common/nest.webp";
avatarImage = "$NIX_FLAKE_PATH/home-manager/roles/common/${vars.user}.webp";
radiusRatio = 0.2;
};
location = {
monthBeforeDay = true;
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 = [
./steam.nix
./pwvucontrol.nix
];
}

View file

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