worked on ly config and added Anki

This commit is contained in:
Tomas Rivera
2026-03-02 14:23:38 +01:00
parent f39dc99356
commit 5588cb0b73
3 changed files with 18 additions and 2 deletions
+1
View File
@@ -23,6 +23,7 @@ imports = [
../../modules/home-manager/oh-my-zsh.nix # another zsh customizer ../../modules/home-manager/oh-my-zsh.nix # another zsh customizer
../../modules/home-manager/hypridle.nix ../../modules/home-manager/hypridle.nix
../../modules/home-manager/swaylock.nix ../../modules/home-manager/swaylock.nix
../../modules/home-manager/anki.nix
]; ];
+15
View File
@@ -0,0 +1,15 @@
{ config, pkgs, ... }:
{
programs.anki = {
enable = true;
sync = {
autoSync = true;
autoSyncMediaMinutes = 10;
syncMedia = true;
};
addons = [
pkgs.ankiAddons.recolor
];
};
}
+2 -2
View File
@@ -10,7 +10,7 @@
# Basic TUI settings # Basic TUI settings
clear_password = true; clear_password = true;
default_input = "password"; default_input = "password";
fg = "0x00FFFFFF"; fg = "0xdecda600";
full_color = true; full_color = true;
hide_borders = false; hide_borders = false;
hide_key_hints = true; hide_key_hints = true;
@@ -40,7 +40,7 @@
# Optional commands (leave null or comment if unused) # Optional commands (leave null or comment if unused)
hibernate_cmd = null; hibernate_cmd = null;
inactivity_cmd = null; inactivity_cmd = null;
#login_cmd = "exec hyprland"; #login_cmd = "exec /run/current-system/sw/bin/hyprland";
logout_cmd = null; logout_cmd = null;
sleep_cmd = null; sleep_cmd = null;