Add ffmpeg & imagemagick

Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
This commit is contained in:
2024-07-24 13:32:11 +01:00
parent 01684dca93
commit 8bdb905994
3 changed files with 26 additions and 14 deletions

View File

@@ -0,0 +1,7 @@
{
username ? throw "username argument is required",
}:
{ pkgs, ... }:
{
home-manager.users.${username}.home.packages = with pkgs; [ ffmpeg ];
}

View File

@@ -0,0 +1,7 @@
{
username ? throw "username argument is required",
}:
{ pkgs, ... }:
{
home-manager.users.${username}.home.packages = with pkgs; [ imagemagick ];
}

View File

@@ -3,8 +3,7 @@
}:
{ ... }:
{
home-manager.users.${username} = {
programs.neovim = {
home-manager.users.${username}.programs.neovim = {
enable = true;
defaultEditor = true;
viAlias = true;
@@ -17,5 +16,4 @@
set smartindent
'';
};
};
}