🚀 add custom email module

This commit is contained in:
Moritz Böhme 2022-03-23 12:33:15 +01:00
parent 9c7be9b751
commit 0400e3f7bd
No known key found for this signature in database
GPG key ID: 213820E2795F5CF5
3 changed files with 103 additions and 57 deletions

17
config/nixos-desktop.nix Normal file
View file

@ -0,0 +1,17 @@
{ config, lib, pkgs, ... }:
{
modules = {
gaming = true;
editors = {
idea = true;
code = true;
};
desktop.apps.email = {
enable = true;
passwordFile = ../secrets/email-desktop.age;
};
};
}

8
config/nixos-laptop.nix Normal file
View file

@ -0,0 +1,8 @@
{ config, lib, pkgs, ... }:
{
modules.desktop.apps.email = {
enable = true;
passwordFile = ../secrets/email-desktop.age;
};
}