diff options
| author | Caroline Larimore <caroline@larimo.re> | 2025-02-08 19:54:47 -0800 |
|---|---|---|
| committer | Caroline Larimore <caroline@larimo.re> | 2025-04-14 18:58:52 -0700 |
| commit | f92d20c06078e92a1bb2d79e3afb9449a7b84614 (patch) | |
| tree | 6e87248f57914b93dfc8e6e10876286a1ea8dc2c /snowfall/modules | |
| parent | 911277bbdb587863b582ea57e9183e996d12e44c (diff) | |
migration: wine
Diffstat (limited to 'snowfall/modules')
| -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" ]; + }) ]; } |