Declare anki package in Nix home manager flake

main
Hektor Misplon 2025-10-28 11:46:20 +01:00
parent 966065dd30
commit 783908c5eb
2 changed files with 5 additions and 0 deletions

View File

@ -15,6 +15,8 @@
home.homeDirectory = "/home/hektor"; home.homeDirectory = "/home/hektor";
home.stateVersion = "25.05"; home.stateVersion = "25.05";
programs.anki = import ../../modules/anki.nix;
programs.firefox = { programs.firefox = {
enable = true; enable = true;
nativeMessagingHosts = with pkgs; [ nativeMessagingHosts = with pkgs; [

View File

@ -0,0 +1,3 @@
{
enable = true;
}