diff options
Diffstat (limited to 'snowfall/modules/home')
| -rw-r--r-- | snowfall/modules/home/tools/default.nix | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/snowfall/modules/home/tools/default.nix b/snowfall/modules/home/tools/default.nix index da6741a..9627d0f 100644 --- a/snowfall/modules/home/tools/default.nix +++ b/snowfall/modules/home/tools/default.nix @@ -1,8 +1,15 @@ -{ lib, namespace, ... }: +{ lib, pkgs, namespace, ... }: with lib; with lib.${namespace}; { - imports = [ + imports = with pkgs; [ (mkSimpleTool "cloc" {}) (mkSimpleTool "ffmpeg" {}) + (mkSimpleTool "wine" { + packages = [ + wineWowPackages.stable + winetricks + ]; + persist = [ ".wine" ]; + }) ]; } |