Compare commits

...

3 commits

Author SHA1 Message Date
8c6e6f6f2e initial mail support 2020-08-31 18:10:04 +02:00
5a23631170 add libsecret for secret-tool 2020-08-31 18:06:21 +02:00
300bccae6f sort config 2020-08-31 18:05:58 +02:00
3 changed files with 14 additions and 3 deletions

View file

@ -11,11 +11,12 @@
./hardware-configuration.nix
./roles/admin.nix
./roles/dev.nix
./roles/base.nix
./roles/desktop.nix
./roles/wireless.nix
./roles/dev.nix
./roles/mail.nix
./roles/vpn.nix
./roles/wireless.nix
];
networking.useDHCP = false;

View file

@ -64,9 +64,10 @@ in {
numix-icon-theme
alacritty
inkscape
libsecret
mumble
neofetch
inkscape
pulseaudio
pulsemixer
unstable.keepassxc

9
roles/mail.nix Normal file
View file

@ -0,0 +1,9 @@
{ config, lib, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
astroid
isync
notmuch
];
}