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

@@ -2,8 +2,10 @@
{ {
# Include the results of the hardware scan. # Include the results of the hardware scan.
imports = imports = [
[ ./hardware-configuration.nix ./home/programs/dropbox/default.nix ]; ./hardware-configuration.nix
#./home/programs/dropbox/default.nix
];
# Use the systemd-boot EFI boot loader. # Use the systemd-boot EFI boot loader.
boot.loader = { boot.loader = {

View File

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

View File

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

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

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