16 lines
227 B
Nix
16 lines
227 B
Nix
{pkgs, ...}: {
|
|
home.file = {
|
|
# Add dotfiles or other configuration files here if needed
|
|
};
|
|
|
|
home.packages = with pkgs; [
|
|
wineWowPackages.stable
|
|
winetricks
|
|
|
|
sqlite
|
|
waybar
|
|
|
|
papirus-icon-theme
|
|
];
|
|
}
|