mirror of
https://github.com/tomasriveral/nixos.git
synced 2026-08-12 02:28:37 +02:00
worked on ly config and added Anki
This commit is contained in:
@@ -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
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,15 @@
|
|||||||
|
{ config, pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
programs.anki = {
|
||||||
|
enable = true;
|
||||||
|
sync = {
|
||||||
|
autoSync = true;
|
||||||
|
autoSyncMediaMinutes = 10;
|
||||||
|
syncMedia = true;
|
||||||
|
};
|
||||||
|
addons = [
|
||||||
|
pkgs.ankiAddons.recolor
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
||||||
@@ -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;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user