From a1eb6801e4904899b910334eee5c7d404d09eb55 Mon Sep 17 00:00:00 2001 From: Bryan Ramos Date: Sun, 7 May 2023 01:44:07 -0400 Subject: [PATCH] Added --- homeConfig/home.nix | 3 +++ sysConfig/default.nix | 16 ++++++++-------- sysConfig/gui.nix | 13 +++++++++++-- sysConfig/locale.nix | 1 - 4 files changed, 22 insertions(+), 11 deletions(-) diff --git a/homeConfig/home.nix b/homeConfig/home.nix index 83545e8..e56ed49 100644 --- a/homeConfig/home.nix +++ b/homeConfig/home.nix @@ -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 ]; diff --git a/sysConfig/default.nix b/sysConfig/default.nix index b62844e..4440866 100644 --- a/sysConfig/default.nix +++ b/sysConfig/default.nix @@ -5,14 +5,14 @@ # Add or remove imports based on the modules in sysConfig/. imports = [ - ./audio.nix - ./boot.nix - ./gui.nix - ./hardware.nix - ./locale.nix - ./network.nix - ./users.nix - ./virt.nix + ./audio.nix + ./boot.nix + ./gui.nix + ./hardware.nix + ./locale.nix + ./network.nix + ./users.nix + ./virt.nix ]; # Enable nix commands and flakes diff --git a/sysConfig/gui.nix b/sysConfig/gui.nix index b673c9a..a1d1158 100644 --- a/sysConfig/gui.nix +++ b/sysConfig/gui.nix @@ -22,8 +22,17 @@ xwayland ]; - services.trezord = { - enable = true; + services = { + trezord = { + enable = true; + }; + + cron = { + enable = true; + systemCronJobs = [ + "0 0 * * * bryan /home/bryan/Documents/scripts/lnbackup_script.sh" + ]; + }; }; # CONSOLE diff --git a/sysConfig/locale.nix b/sysConfig/locale.nix index f41fa19..397351a 100644 --- a/sysConfig/locale.nix +++ b/sysConfig/locale.nix @@ -1,7 +1,6 @@ { config, pkgs, lib, ... }: { - time = { timeZone = "America/New_York"; };