mirror of
https://github.com/EdenQwQ/nixos.git
synced 2025-12-26 18:34:56 +08:00
10 lines
146 B
Nix
10 lines
146 B
Nix
{ inputs, pkgs, ... }:
|
|
{
|
|
imports = [
|
|
./zathura.nix
|
|
];
|
|
home.packages = with pkgs; [
|
|
libreoffice
|
|
onlyoffice-desktopeditors
|
|
];
|
|
}
|