diff options
| author | Fuwn <[email protected]> | 2024-09-30 01:30:16 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-09-30 01:30:16 -0700 |
| commit | 4e88ae18894e4f3872ac3392fd313c029d3578cc (patch) | |
| tree | f9d664a3aff1c90a5d213627c61b2edc3ae9f260 | |
| parent | ebisu: fix home username (diff) | |
| download | nixos-config-4e88ae18894e4f3872ac3392fd313c029d3578cc.tar.xz nixos-config-4e88ae18894e4f3872ac3392fd313c029d3578cc.zip | |
ebisu: add wine
| -rw-r--r-- | home/ebisu/fortune/system/virtualisation/default.nix | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/home/ebisu/fortune/system/virtualisation/default.nix b/home/ebisu/fortune/system/virtualisation/default.nix index 8465b37..bc74b7e 100644 --- a/home/ebisu/fortune/system/virtualisation/default.nix +++ b/home/ebisu/fortune/system/virtualisation/default.nix @@ -1,5 +1,9 @@ { pkgs, ... }: { imports = [ ./docker.nix ]; - home.packages = [ pkgs.bottles ]; + home.packages = with pkgs; [ + bottles + wine + wine-staging + ]; } |