Compare commits

..

No commits in common. "9d39a6f8fed99e9a97c8617380c818a524dfbde3" and "4f9ad294fd92ff9365f5adf1d1da48fd5d701ff6" have entirely different histories.

6 changed files with 19 additions and 81 deletions

View file

@ -149,7 +149,6 @@
cabal-install
ghcid
nixfmt-rfc-style
nil
hpack
hlint
];

View file

@ -1,9 +1,4 @@
{
config,
lib,
pkgs,
...
}:
{ config, lib, pkgs, ... }:
{
imports = [
@ -22,7 +17,6 @@
./services/network-manager
./services/syncthing
./services/git-sync
./modules/email.nix
];
home = {
@ -33,11 +27,8 @@
keyboard.layout = "us";
keyboard.variant = "dvorak";
keyboard.options = [
"terminate:ctrl_alt_bksp"
"caps:escape"
"compose:ralt"
];
keyboard.options =
[ "terminate:ctrl_alt_bksp" "caps:escape" "compose:ralt" ];
packages = with pkgs; [
# social
@ -50,8 +41,7 @@
# gaming support
lutris
bottles
wine64Packages.stagingFull
winePackages.stagingFull
# reading
calibre
@ -76,23 +66,19 @@
enable = true;
package = pkgs.firefox.override {
cfg = {
nativeMessagingHosts.packages = [
pkgs.browserpass
pkgs.tridactyl-native
];
nativeMessagingHosts.packages =
[ pkgs.browserpass pkgs.tridactyl-native ];
enableGnomeExtensions = true;
};
};
};
mpv.enable = true;
zsh =
let
zsh = let
auth-socket-env = ''
export SSH_AUTH_SOCK="$(${pkgs.gnupg}/bin/gpgconf -L agent-ssh-socket)"
'';
in
{
in {
enable = true;
loginExtra = auth-socket-env;
initExtra = auth-socket-env;

View file

@ -1,39 +0,0 @@
{
config,
lib,
pkgs,
...
}:
{
programs.mbsync.enable = true;
programs.msmtp.enable = true;
programs.notmuch = {
enable = true;
hooks.preNew = "mbsync --all";
};
accounts.email = {
accounts.failco = {
address = "me@failco.de";
gpg = {
key = "F2132F0C63730C6BC42BCC2A41A6D13FECA21280";
signByDefault = true;
};
imap.host = "thrall.failco.de";
mbsync = {
enable = true;
create = "maildir";
};
msmtp.enable = true;
notmuch.enable = true;
primary = true;
realName = "Alexander Kobjolke";
passwordCommand = "gopass --nosync show -o eMail/failco.de/me@failco.de";
smtp = {
host = "thrall.failco.de";
};
userName = "me@failco.de";
};
};
}

View file

@ -177,8 +177,8 @@
;;zig ; C, but simpler
:email
;; (mu4e +org +gmail)
(notmuch +org +afew)
(mu4e +org +gmail)
;;notmuch
;;(wanderlust +gmail)
:app

View file

@ -1,12 +1,5 @@
{
config,
lib,
pkgs,
...
}:
{ config, lib, pkgs, ... }:
{
programs.jq = {
enable = true;
};
programs.jq = { enable = true; };
}

View file

@ -100,7 +100,6 @@ myConfig =
[ namedScratchpadManageHook scratchpads
, isDialog --> doFloat
, isFullscreen --> doFullFloat
, className =? "steam_proton" --> doFloat
, manageHook def
]
}