8 lines
153 B
Nix
8 lines
153 B
Nix
{
|
|
username ? throw "username argument is required",
|
|
}:
|
|
{ pkgs, ... }:
|
|
{
|
|
home-manager.users.${username}.home.packages = with pkgs; [ imagemagick ];
|
|
}
|