12 lines
142 B
Nix
12 lines
142 B
Nix
{ pkgs, ... }:
|
|
{
|
|
imports = [
|
|
../apps/element.nix
|
|
../apps/discord.nix
|
|
];
|
|
|
|
home.packages = with pkgs; [
|
|
signal-desktop
|
|
];
|
|
}
|