better bar

This commit is contained in:
Cyryl Płotnicki 2020-08-23 12:17:23 +01:00
parent 097fa8ae3d
commit 06903263d5
3 changed files with 13 additions and 4 deletions

View file

@ -41,6 +41,9 @@ interval = 20
warning = 20.0
alert = 10.0
[[block]]
block = "sound"
[[block]]
block = "bluetooth"
mac = "28:11:A5:E1:3C:57"

View file

@ -5,6 +5,7 @@
./i3.nix
./dunst.nix
./rofi.nix
./kdeconnect.nix
];
home.sessionVariables = {
@ -16,10 +17,6 @@
enable = true;
vSync = true;
};
kdeconnect = {
enable = true;
indicator = true;
};
network-manager-applet.enable = true;
pasystray.enable = true;
};

9
nixos/i3/kdeconnect.nix Normal file
View file

@ -0,0 +1,9 @@
{ config, pkgs, ... }:
{
services.kdeconnect = {
enable = true;
indicator = false;
};
home.packages = with pkgs; [ kdeconnect ] ;
}