14 lines
203 B
Nix
14 lines
203 B
Nix
{ inputs, pkgs, ... }:
|
|
|
|
{
|
|
nixpkgs.overlays = [
|
|
(final: prev: {
|
|
xmobar = inputs.xmobar-config.packages.${pkgs.system}.xmobar-config;
|
|
})
|
|
];
|
|
|
|
home.pkgs = with pkgs; [
|
|
xmobar
|
|
];
|
|
}
|