This commit is contained in:
Varris 2023-10-01 07:23:59 +02:00
parent b0b7b1a114
commit d504a232ac
4 changed files with 8 additions and 4 deletions

View File

@ -29,8 +29,8 @@
}; };
fileSystems."/home" = fileSystems."/home" =
{ device = "/dev/disk/by-uuid/4af74e31-5ec6-4244-bb1e-192df0b8a175"; { device = "/dev/nvme0n1p1";
fsType = "ext4"; fsType = "bcachefs";
}; };
swapDevices = [ ]; swapDevices = [ ];

View File

@ -15,6 +15,7 @@
fwupd.enable = true; fwupd.enable = true;
gnome.gnome-keyring.enable = true; gnome.gnome-keyring.enable = true;
gvfs.enable = true; gvfs.enable = true;
irqbalance.enable = true;
openssh.enable = true; openssh.enable = true;
udisks2.enable = true; udisks2.enable = true;

View File

@ -66,6 +66,9 @@ const Volume = () => Button({
Label({ Label({
connections: [[Audio, label => { connections: [[Audio, label => {
if (!Audio.speaker)
return;
label.label = ` ${Math.ceil((Audio.speaker.volume * 100) / 10) * 10}%`; // round up to nearest 10 label.label = ` ${Math.ceil((Audio.speaker.volume * 100) / 10) * 10}%`; // round up to nearest 10
}, 'speaker-changed' ]], }, 'speaker-changed' ]],
}), }),
@ -167,8 +170,8 @@ const Center = () => Box({
const Right = () => Box({ const Right = () => Box({
halign: 'end', halign: 'end',
children: [ children: [
Clock(),
SysTray(), SysTray(),
Clock(),
], ],
}); });

View File

@ -25,6 +25,7 @@
bottles bottles
bottom bottom
calcurse calcurse
discord
electron electron
gamescope_git gamescope_git
gimp gimp
@ -66,7 +67,6 @@
vimv vimv
vulkan-tools vulkan-tools
vulkan-validation-layers vulkan-validation-layers
webcord
xdg-utils xdg-utils
]; ];