better bar
This commit is contained in:
parent
097fa8ae3d
commit
06903263d5
3 changed files with 13 additions and 4 deletions
|
@ -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"
|
||||
|
|
|
@ -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
9
nixos/i3/kdeconnect.nix
Normal file
|
@ -0,0 +1,9 @@
|
|||
{ config, pkgs, ... }:
|
||||
{
|
||||
services.kdeconnect = {
|
||||
enable = true;
|
||||
indicator = false;
|
||||
};
|
||||
|
||||
home.packages = with pkgs; [ kdeconnect ] ;
|
||||
}
|
Loading…
Reference in a new issue