diff options
| author | Leander Scherer <leander@schererleander.de> | 2026-06-02 23:54:34 +0200 |
|---|---|---|
| committer | Leander Scherer <leander@schererleander.de> | 2026-06-02 23:54:34 +0200 |
| commit | e887e87f3fe38a5f728bc0a22c8b135a32cfcc4b (patch) | |
| tree | 6ea4dabe549bfcd75ef8c4ef33541e0dbc04e005 /modules | |
| parent | b4efe3482427566b6d4e1b2cbc7baaaf2ce661d7 (diff) | |
feat(wine): setup wine
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/hosts/adam/flake-parts.nix | 1 | ||||
| -rw-r--r-- | modules/system/wine.nix | 13 | ||||
| -rw-r--r-- | modules/users/schererleander/hm-linux.nix | 1 |
3 files changed, 15 insertions, 0 deletions
diff --git a/modules/hosts/adam/flake-parts.nix b/modules/hosts/adam/flake-parts.nix index 934dcb2..7f8de0c 100644 --- a/modules/hosts/adam/flake-parts.nix +++ b/modules/hosts/adam/flake-parts.nix @@ -14,6 +14,7 @@ dns audio font + printer bluetooth wifi mullvad-vpn diff --git a/modules/system/wine.nix b/modules/system/wine.nix new file mode 100644 index 0000000..1824749 --- /dev/null +++ b/modules/system/wine.nix @@ -0,0 +1,13 @@ +{ + flake.modules.homeManager.wine = + { pkgs, ... }: + { + home.packages = with pkgs; [ + q4wine + winetricks + unzip + cabextract + wineWow64Packages.waylandFull + ]; + }; +} diff --git a/modules/users/schererleander/hm-linux.nix b/modules/users/schererleander/hm-linux.nix index a2221da..6e0ca60 100644 --- a/modules/users/schererleander/hm-linux.nix +++ b/modules/users/schererleander/hm-linux.nix @@ -10,6 +10,7 @@ vlc jellyfin-mpv-shim libreoffice + wine ]; }; } |
