diff options
Diffstat (limited to 'hosts/muhammed/extra-utils.nix')
-rw-r--r-- | hosts/muhammed/extra-utils.nix | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/hosts/muhammed/extra-utils.nix b/hosts/muhammed/extra-utils.nix new file mode 100644 index 0000000..5cdd11c --- /dev/null +++ b/hosts/muhammed/extra-utils.nix @@ -0,0 +1,15 @@ +# This HM module adds extra utilities specific to this host. +{pkgs, ...}: let + # Set some default options + xkcdpass' = pkgs.writeShellScriptBin "xkcdpass" '' + ${pkgs.xkcdpass}/bin/xkcdpass --delimiter="" --case capitalize --numwords=5 "$@" + ''; +in { + home.packages = with pkgs; [ + imagemagick + ffmpeg_6-full + + # Generating passwords + xkcdpass' + ]; +} |