This commit is contained in:
Till 2026-01-19 20:19:47 +01:00
parent deebde0386
commit 3c34e65b68
12 changed files with 91 additions and 40 deletions

View file

@ -29,7 +29,6 @@
nyxt
# media
#bookworm
anki-bin
qbittorrent
nicotine-plus

View file

@ -3,11 +3,6 @@
{
programs.firefox = {
enable = true;
# package = pkgs.firefox.override {
# cfg = {
# enableTridactylNative = true;
# };
# };
policies = {
DisableFirefoxAccounts = true;
DisablePocket = true;
@ -42,6 +37,7 @@
adaptive-tab-bar-colour
auto-tab-discard
keepassxc-browser
passff
tampermonkey
ublock-origin
vimium

View file

@ -23,6 +23,14 @@
echo (set_color magenta)fish $version(set_color normal)
end
function brief;
khal list today 1d --day-format=
echo ""
task rc.verbose=nothing rc.report.foo.columns:id,description.count rc.report.foo.sort:urgency- foo +READY limit:5
echo ""
tree --noreport -L 1 ~/desktop
end
fzf --fish | source
function startrloft --description 'Starts R with custom environment'

View file

@ -36,7 +36,7 @@
smtp.tls.useStartTls = true;
userName = "tstraube";
notmuch.enable = true;
passwordCommand = "secret-tool lookup server uni-frankfurt.de account tstraube";
passwordCommand = "pass uni/hrz";
signature = {
text = ''
Dr. Till Straube (he/him)
@ -114,7 +114,7 @@
unset crypt_auto_smime
unalternates *
alternates @t9e.me$
alternates @t9e.me$ @ktiu.net$
set reverse_name
set my_signature = ${
@ -131,7 +131,7 @@
enable = true;
extraConfig.from = "*@t9e.me";
};
passwordCommand = "secret-tool lookup server arielle.ktiu.net account till.straube@t9e.me";
passwordCommand = "pass mail/arielle.ktiu.net";
};
ktiu = {

View file

@ -16,14 +16,15 @@
xdg.userDirs = {
enable = true;
desktop = "${config.home.homeDirectory}/desktop";
documents = "${config.home.homeDirectory}/misc";
download = "${config.home.homeDirectory}/tmp";
music = "${config.home.homeDirectory}/media/music";
pictures = "${config.home.homeDirectory}/media/img";
videos = "${config.home.homeDirectory}/media/vid";
documents = "${config.home.homeDirectory}/misc";
templates = "${config.xdg.dataHome}/templates";
publicShare = "${config.home.homeDirectory}/box";
desktop = null;
templates = "${config.xdg.dataHome}/templates";
videos = "${config.home.homeDirectory}/media/vid";
};
home.packages = with pkgs; [
@ -71,4 +72,31 @@
enable = true;
settings.styles.theme = "default-light";
};
programs.ssh.matchBlocks = {
geocom = {
hostname = "geocom.uni-frankfurt.de";
user = "till";
identityFile = "${config.home.homeDirectory}/.ssh/tstraube";
};
};
programs.gpg.settings = {
no-emit-version = true;
no-comments = true;
keyserver = "hkps://keys.openpgp.org/";
keyserver-options = [
"no-honor-keyserver-url"
"include-revoked"
];
personal-cipher-preferences = "AES256 AES192 AES CAST5";
personal-digest-preferences = "SHA512 SHA384 SHA256 SHA224";
cert-digest-algo = "SHA512";
default-preference-list = "SHA512 SHA384 SHA256 SHA224 AES256 AES192 AES CAST5 ZLIB BZIP2 ZIP Uncompressed";
};
}

View file

@ -1,14 +1,24 @@
{ config, pkgs, ... }:
{
# services.gnome.gnome-keyring.enable = lib.mkForce false;
# services.gnome.gnome-keyring.enable = false;
services.pass-secret-service.enable = true;
programs.password-store = {
enable = true;
settings = {
PASSWORD_STORE_DIR = "$XDG_DATA_HOME/crypto/password-store";
PASSWORD_STORE_DIR = "${config.xdg.dataHome}/crypto/password-store";
};
};
programs.firefox.nativeMessagingHosts = [
pkgs.passff-host
];
services.pass-secret-service = {
enable = true;
};
home.packages = with pkgs; [
pinentry-all
];
}

View file

@ -11,6 +11,7 @@
home.packages = with pkgs; [
aichat
usbutils
wl-clipboard
@ -19,7 +20,7 @@
notmuch
w3m
openssl
gnupg
# gnupg
urlscan
ripmime
@ -50,11 +51,10 @@
# media
rhythmbox
vlc
appimage-run
# secrets
libsecret
# libsecret
keepassxc
yubioath-flutter
@ -70,9 +70,12 @@
];
programs.taskwarrior = {
package = pkgs.taskwarrior3;
enable = true;
package = pkgs.taskwarrior3;
dataLocation = "${config.xdg.dataHome}/taskwarrior/tasks";
colorTheme = "light-256";
config = {
report.list.columns = ["id" "depends.indicator" "priority" "project" "recur.indicator" "scheduled.countdown" "due" "until.age" "status.short" "description.count" "tags"];