From e8077fde966e051fc449fffcfa061c7f7edc47b0 Mon Sep 17 00:00:00 2001 From: Caroline Larimore Date: Mon, 14 Apr 2025 19:01:38 -0700 Subject: migration: finalize --- modules/home/tools/default.nix | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 modules/home/tools/default.nix (limited to 'modules/home/tools/default.nix') diff --git a/modules/home/tools/default.nix b/modules/home/tools/default.nix new file mode 100644 index 0000000..9627d0f --- /dev/null +++ b/modules/home/tools/default.nix @@ -0,0 +1,15 @@ +{ lib, pkgs, namespace, ... }: + +with lib; with lib.${namespace}; { + imports = with pkgs; [ + (mkSimpleTool "cloc" {}) + (mkSimpleTool "ffmpeg" {}) + (mkSimpleTool "wine" { + packages = [ + wineWowPackages.stable + winetricks + ]; + persist = [ ".wine" ]; + }) + ]; +} -- cgit v1.2.3