mirror of
https://github.com/EdenQwQ/nixos.git
synced 2026-01-08 04:07:29 +08:00
10 lines
290 B
Nix
10 lines
290 B
Nix
{ inputs, pkgs, ... }:
|
|
{
|
|
imports = [
|
|
./zathura.nix
|
|
];
|
|
home.packages = with pkgs; [
|
|
inputs.nixpkgs-stable.legacyPackages.${pkgs.stdenv.hostPlatform.system}.libreoffice
|
|
inputs.nixpkgs-stable.legacyPackages.${pkgs.stdenv.hostPlatform.system}.onlyoffice-desktopeditors
|
|
];
|
|
}
|