🚀 add custom email module
This commit is contained in:
parent
9c7be9b751
commit
0400e3f7bd
3 changed files with 103 additions and 57 deletions
17
config/nixos-desktop.nix
Normal file
17
config/nixos-desktop.nix
Normal 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
8
config/nixos-laptop.nix
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
modules.desktop.apps.email = {
|
||||
enable = true;
|
||||
passwordFile = ../secrets/email-desktop.age;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue