mirror of
https://github.com/itme-brain/nixos.git
synced 2026-03-24 00:29:43 -04:00
Added
This commit is contained in:
parent
1731442060
commit
a1eb6801e4
4 changed files with 22 additions and 11 deletions
|
|
@ -11,6 +11,7 @@
|
||||||
|
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
firefox
|
firefox
|
||||||
|
google-chrome
|
||||||
(tor-browser-bundle-bin.override {
|
(tor-browser-bundle-bin.override {
|
||||||
useHardenedMalloc = false; # Nix specific bug in tor browser requires disabling useHardenedMalloc
|
useHardenedMalloc = false; # Nix specific bug in tor browser requires disabling useHardenedMalloc
|
||||||
})
|
})
|
||||||
|
|
@ -38,6 +39,7 @@
|
||||||
lsd
|
lsd
|
||||||
fping
|
fping
|
||||||
calc
|
calc
|
||||||
|
qrencode
|
||||||
|
|
||||||
bash-completion
|
bash-completion
|
||||||
nodePackages."@tailwindcss/language-server"
|
nodePackages."@tailwindcss/language-server"
|
||||||
|
|
@ -51,6 +53,7 @@
|
||||||
|
|
||||||
keepassxc
|
keepassxc
|
||||||
neofetch
|
neofetch
|
||||||
|
evince
|
||||||
|
|
||||||
qogir-icon-theme
|
qogir-icon-theme
|
||||||
];
|
];
|
||||||
|
|
|
||||||
|
|
@ -5,14 +5,14 @@
|
||||||
|
|
||||||
# Add or remove imports based on the modules in sysConfig/.
|
# Add or remove imports based on the modules in sysConfig/.
|
||||||
imports = [
|
imports = [
|
||||||
./audio.nix
|
./audio.nix
|
||||||
./boot.nix
|
./boot.nix
|
||||||
./gui.nix
|
./gui.nix
|
||||||
./hardware.nix
|
./hardware.nix
|
||||||
./locale.nix
|
./locale.nix
|
||||||
./network.nix
|
./network.nix
|
||||||
./users.nix
|
./users.nix
|
||||||
./virt.nix
|
./virt.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
# Enable nix commands and flakes
|
# Enable nix commands and flakes
|
||||||
|
|
|
||||||
|
|
@ -22,8 +22,17 @@
|
||||||
xwayland
|
xwayland
|
||||||
];
|
];
|
||||||
|
|
||||||
services.trezord = {
|
services = {
|
||||||
enable = true;
|
trezord = {
|
||||||
|
enable = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
cron = {
|
||||||
|
enable = true;
|
||||||
|
systemCronJobs = [
|
||||||
|
"0 0 * * * bryan /home/bryan/Documents/scripts/lnbackup_script.sh"
|
||||||
|
];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
# CONSOLE
|
# CONSOLE
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,6 @@
|
||||||
{ config, pkgs, lib, ... }:
|
{ config, pkgs, lib, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
|
|
||||||
time = {
|
time = {
|
||||||
timeZone = "America/New_York";
|
timeZone = "America/New_York";
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue