Noctalia config + add pwvucontrol for audio control
This commit is contained in:
parent
f4b76d4ae4
commit
218b6ffe8a
4 changed files with 56 additions and 5 deletions
|
Before Width: | Height: | Size: 3.4 KiB After Width: | Height: | Size: 3.4 KiB |
|
|
@ -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 = [
|
||||
{
|
||||
|
|
@ -35,9 +42,18 @@
|
|||
];
|
||||
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;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
{
|
||||
imports = [
|
||||
./steam.nix
|
||||
./pwvucontrol.nix
|
||||
];
|
||||
}
|
||||
|
|
|
|||
7
nixos/roles/physical/desktop/common/apps/pwvucontrol.nix
Normal file
7
nixos/roles/physical/desktop/common/apps/pwvucontrol.nix
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
pwvucontrol
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue