signal + dropbox

This commit is contained in:
2024-03-05 17:37:51 +01:00
parent 34bb6b62d5
commit 66c50ae9d0
4 changed files with 12 additions and 3 deletions

View File

@@ -1,10 +1,12 @@
{
imports = [
./alacritty
./dropbox
./git.nix
./neovim
./obs
./rofi
./signal
./telegram.nix
./wallpaper.nix
./xmonad

View File

@@ -1,7 +1,7 @@
{ pkgs, lib, ... }:
{
environment.systemPackages = with pkgs; [ dropbox dropbox-cli ];
home.systemPackages = with pkgs; [ dropbox dropbox-cli ];
networking.firewall = {
allowedTCPPorts = [ 17500 ];

5
home/programs/signal.nix Normal file
View File

@@ -0,0 +1,5 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [ signal-desktop ];
}