Merge branch 'main' of git.firelilith.org:lilith/nixos

This commit is contained in:
Lilith 2025-04-29 13:55:20 +02:00
commit 4f116eb8a6
Signed by: lilith
GPG key ID: 8712A0F317C37175
5 changed files with 17 additions and 9 deletions

8
flake.lock generated
View file

@ -236,11 +236,11 @@
},
"flake-private": {
"locked": {
"lastModified": 1744570005,
"narHash": "sha256-SnV4raQWMiysxsZBOq4wrR9kWxF8Fk/Arn9bERr1XOg=",
"lastModified": 1745623083,
"narHash": "sha256-4dITN4vFrcWv4rwRMDTs/t+8K9coTIU8fA3sGVGb/pA=",
"ref": "main",
"rev": "ce669973291ca0e09677fb2491922ea15562e9ef",
"revCount": 2,
"rev": "8b6bde50ea541f1154893dbe9ab34f748e4fc706",
"revCount": 3,
"type": "git",
"url": "ssh://git@git.firelilith.org/lilith/flake-private.git"
},

View file

@ -1,7 +1,10 @@
{pkgs, ...}: {
{ pkgs, ... }:
{
programs.gpg = {
enable = true;
settings.trust-model = "tofu+pgp";
settings = {
trust-model = "tofu+pgp";
};
};
services.gpg-agent = {

View file

@ -70,8 +70,6 @@
allow_tearing = false;
};
ecosystem.no_update_news = true;
decoration = {
rounding = 10;

View file

@ -23,6 +23,8 @@
ncspot
vesktop
logseq
gimp
btop
htop

View file

@ -8,10 +8,15 @@
programs.thunderbird = {
enable = true;
settings = {
"general.useragent.override" = "";
"privacy.donottrackheader.enabled" = true;
"mail.openpgp.allow_external_gnupg" = true;
"mail.openpgp.fetch_pubkeys_from_gnupg" = true;
};
profiles."lilith" = {
isDefault = true;
withExternalGnupg = true;
};
};