This commit is contained in:
Bryan Ramos 2023-05-07 01:44:07 -04:00
parent 1731442060
commit a1eb6801e4
4 changed files with 22 additions and 11 deletions

View file

@ -11,6 +11,7 @@
home.packages = with pkgs; [
firefox
google-chrome
(tor-browser-bundle-bin.override {
useHardenedMalloc = false; # Nix specific bug in tor browser requires disabling useHardenedMalloc
})
@ -38,6 +39,7 @@
lsd
fping
calc
qrencode
bash-completion
nodePackages."@tailwindcss/language-server"
@ -51,6 +53,7 @@
keepassxc
neofetch
evince
qogir-icon-theme
];

View file

@ -22,10 +22,19 @@
xwayland
];
services.trezord = {
services = {
trezord = {
enable = true;
};
cron = {
enable = true;
systemCronJobs = [
"0 0 * * * bryan /home/bryan/Documents/scripts/lnbackup_script.sh"
];
};
};
# CONSOLE
console = {

View file

@ -1,7 +1,6 @@
{ config, pkgs, lib, ... }:
{
time = {
timeZone = "America/New_York";
};