10 lines
152 B
Nix
10 lines
152 B
Nix
{ pkgs, lib, host, ... }:
|
|
{
|
|
home.packages = with pkgs; [
|
|
(gimp-with-plugins.override {
|
|
plugins = with gimpPlugins; [ bimp ];
|
|
})
|
|
];
|
|
}
|
|
|