dotfiles/home/home.nix

13 lines
177 B
Nix

{ self, pkgs, ... }:
{
services.polybar = {
enable = true;
script = "polybar bar &";
};
xsession.windowManager.i3 = {
enable = true;
config = import ./i3.nix;
};
}