Add statusbar.nix

refactor
Riley Apeldoorn 2 years ago
parent 64dbffb53f
commit feff5a9f1b

@ -8,6 +8,7 @@ with lib; {
./pulseaudio.nix
./clipboard.nix
./statusbar.nix
./terminal.nix
];

@ -0,0 +1,10 @@
{ pkgs, config, lib, ... }:
(lib.mkIf (config.riley.gui) {
home-manager.users."riley" = {
services.polybar = {
enable = true;
config = {}; # TODO
};
};
})
Loading…
Cancel
Save