This commit is contained in:
foosinn 2020-08-28 20:38:31 +02:00
parent bb686b6659
commit 25581b314c
3 changed files with 26 additions and 3 deletions

9
roles/mail.nix Normal file
View file

@ -0,0 +1,9 @@
{ config, lib, pkgs, ... }:
let
unstable = import <nixos-unstable> {};
in {
environment.systemPackages = with pkgs; [
unstable.notmuch
];
}