1
Fork 0

Clean up home dir a bit

This commit is contained in:
prescientmoon 2024-09-01 00:15:33 +02:00
parent c0a5d1f8cc
commit 04a66f7f98
Signed by: prescientmoon
SSH key fingerprint: SHA256:WFp/cO76nbarETAoQcQXuV+0h7XJsEsOCI0UsyPIy6U
6 changed files with 42 additions and 47 deletions

View file

@ -25,6 +25,7 @@
# signal-desktop # Signal client
# element-desktop # Matrix client
# zoom-us # Zoom client 🤮
whatsapp-for-linux
# }}}
# {{{ Editors for different formats
gimp # Image editing

View file

@ -1,4 +1,5 @@
{ config, ... }: {
{ config, ... }:
{
sops.secrets.moonythm_mail_pass.sopsFile = ./secrets.yaml;
programs.msmtp.enable = true;
@ -61,7 +62,13 @@
neomutt = {
enable = true;
sendMailCommand = "msmtpq --read-envelope-from --read-recipients";
extraMailboxes = [ "Archive" "Drafts" "Junk" "Sent" "Trash" ];
extraMailboxes = [
"Archive"
"Drafts"
"Junk"
"Sent"
"Trash"
];
};
# }}}
# {{{ Aerc
@ -94,28 +101,40 @@
binds = [
# {{{ Toggle sidebar
{
map = [ "index" "pager" ];
map = [
"index"
"pager"
];
key = "B";
action = "sidebar-toggle-visible";
}
# }}}
# {{{ Highlight previous sidebar item
{
map = [ "index" "pager" ];
map = [
"index"
"pager"
];
key = "\\CK";
action = "sidebar-prev";
}
# }}}
# {{{ Highlight next sidebar item
{
map = [ "index" "pager" ];
map = [
"index"
"pager"
];
key = "\\CJ";
action = "sidebar-next";
}
# }}}
# {{{ Open highlighted sidebar item
{
map = [ "index" "pager" ];
map = [
"index"
"pager"
];
key = "\\CO";
action = "sidebar-open";
}
@ -334,7 +353,11 @@
exec = "neomutt %U";
icon = "mutt";
terminal = true;
categories = [ "Network" "Email" "ConsoleOnly" ];
categories = [
"Network"
"Email"
"ConsoleOnly"
];
type = "Application";
mimeType = [ "x-scheme-handler/mailto" ];
};
@ -346,9 +369,7 @@
# }}}
# }}}
# {{{ Storage & persistence
accounts.email.maildirBasePath = "${config.home.homeDirectory}/maildir";
satellite.persistence.at.data.apps.mail.directories = [
config.accounts.email.maildirBasePath
];
accounts.email.maildirBasePath = "${config.xdg.dataHome}/maildir";
satellite.persistence.at.data.apps.mail.directories = [ config.accounts.email.maildirBasePath ];
# }}}
}

View file

@ -5,7 +5,7 @@
...
}:
let
workflowDir = "${config.home.homeDirectory}/productivity/smos";
workflowDir = "${config.xdg.dataHome}/smos/workflow";
in
{
sops.secrets.smos_password.sopsFile = ../secrets.yaml;

View file

@ -1,4 +0,0 @@
{
authorizedKeys = { outputs, lib }:
}

View file

@ -1,23 +0,0 @@
# For more comments check out [pilot](./pilot.nix)
{
pkgs,
outputs,
lib,
...
}:
{
users.mutableUsers = false;
users.users.guest = {
isNormalUser = true;
shell = pkgs.fish;
extraGroups = [
"wheel"
"audio"
"video"
"network"
"tty"
];
password = "heyo";
openssh.authorizedKeys.keyFiles = (import ./common.nix).authorizedKeys { inherit outputs lib; };
};
}

View file

@ -12,7 +12,7 @@
# {{{ Password handling
sops.secrets.pilot_password = {
sopsFile = ../secrets.yaml;
sopsFile = ../../secrets.yaml;
neededForUsers = true;
};
# }}}