Files
Olympus/modules/users/nathan/home-manager/features/pywal.nix
2026-04-22 14:09:08 -05:00

14 lines
228 B
Nix

{ ... }: {
flake.homeModules.nathan-pywal = { config, lib, pkgs, ... }: {
config = {
home.packages = with pkgs; [
pywal16
imagemagick
];
};
};
}