mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-11-05 06:03:15 -06:00
24 lines
360 B
Nix
24 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;
|
||
|
})
|
||
|
];
|
||
|
}
|