mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-11-05 10:13:14 -06:00
23 lines
360 B
Nix
23 lines
360 B
Nix
{
|
|
inputs,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
environment.systemPackages = with pkgs; [
|
|
inputs.wezterm.packages.${pkgs.system}.default
|
|
alacritty
|
|
|
|
inkscape
|
|
gimp
|
|
|
|
libreoffice-qt
|
|
hunspell # spell check for libreoffice
|
|
|
|
(vivaldi.override {
|
|
commandLineArgs = [
|
|
"--force-dark-mode"
|
|
];
|
|
proprietaryCodecs = true;
|
|
})
|
|
];
|
|
}
|