nixos-config/modules/home/programs/misc/general/default.nix

10 lines
160 B
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
2024-10-09 03:36:08 -04:00
{
home.packages = with pkgs; lib.mkIf config.home.desktop.enable [
2024-12-25 02:09:04 -05:00
bc
libreoffice
2024-12-25 02:09:04 -05:00
telegram-desktop
vesktop
2024-10-09 03:36:08 -04:00
];
}