11 lines
156 B
Nix
11 lines
156 B
Nix
{ pkgs, ... }:
|
|
{
|
|
home.packages = with pkgs; [
|
|
# (gimp-with-plugins.override {
|
|
# plugins = with gimpPlugins; [ bimp ];
|
|
# })
|
|
gimp
|
|
];
|
|
}
|
|
|