20 lines
299 B
Nix
20 lines
299 B
Nix
{pkgs, ...}: {
|
|
imports = [
|
|
../../packages/firefox/home.nix
|
|
];
|
|
|
|
home.packages = with pkgs; [
|
|
heroic
|
|
# fcitx5
|
|
# fcitx5-mozc-ut
|
|
# kdePackages.fcitx5-configtool
|
|
solaar
|
|
parted
|
|
edk2-uefi-shell
|
|
libreoffice
|
|
];
|
|
services.easyeffects = {
|
|
enable = true;
|
|
};
|
|
}
|