10 lines
128 B
Nix
10 lines
128 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
home.packages = with pkgs; [
|
|
# firefox # in nixos config
|
|
telegram-desktop
|
|
vscode
|
|
];
|
|
}
|