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