has libvirtd in container in fusu-services.nix

This commit is contained in:
Sebastian Moser
2025-10-03 17:29:42 +02:00
parent 320570979e
commit d3f6e79b85
19 changed files with 827 additions and 256 deletions

20
programs/thunderbird.nix Normal file
View File

@@ -0,0 +1,20 @@
{ pkgs, config, persistentDir, ... }: {
programs.thunderbird = {
enable = true;
profiles.me = {
isDefault = true;
};
};
/*
home.file.".thunderbird" = {
force = true;
source = config.lib.file.mkOutOfStoreSymlink "${persistentDir}/thunderbird";
};
*/
}