forked from mirrors_public/oddlama_nix-config
20 lines
454 B
Nix
20 lines
454 B
Nix
{ pkgs, ... }:
|
|
{
|
|
# XXX: to enable dark mode, no idea why it isn't detected by default.
|
|
# dconf write /com/usebottles/bottles/dark-theme true
|
|
|
|
home.packages = with pkgs; [
|
|
bottles
|
|
winetricks
|
|
wineWowPackages.fonts
|
|
wineWowPackages.stagingFull
|
|
];
|
|
|
|
home.persistence."/state".directories = [
|
|
".local/share/bottles"
|
|
];
|
|
|
|
home.persistence."/persist".directories = [
|
|
".local/share/bottles/bottles/Gaming/drive_c/users"
|
|
];
|
|
}
|