25 lines
330 B
Nix
25 lines
330 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
lib.my.makeSwitch {
|
|
inherit config;
|
|
optionName = "wine";
|
|
optionPath = [
|
|
"desktop"
|
|
"wine"
|
|
];
|
|
config' = {
|
|
my.hm.home.packages = with pkgs; [
|
|
wineWayland
|
|
proton-ge-custom
|
|
bottles
|
|
];
|
|
my.persist.homeDirs = [
|
|
".local/share/bottles"
|
|
];
|
|
};
|
|
}
|