11 lines
172 B
Nix
11 lines
172 B
Nix
{ config, lib, pkgs, ... }:
|
|
{
|
|
home.packages = with pkgs; lib.mkIf config.home.desktop.enable [
|
|
bc
|
|
fractal
|
|
libreoffice
|
|
telegram-desktop
|
|
vesktop
|
|
];
|
|
}
|