mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 03:33:55 -05:00
aly: move secrets to secrets.nix
Some checks are pending
flakehub / flakehub-publish (push) Waiting to run
git-mirror / gitlab-sync (push) Waiting to run
nix-build / default-build (push) Waiting to run
nix-build / fallarbor-build (push) Waiting to run
nix-build / lavaridge-build (push) Waiting to run
nix-build / mauville-build (push) Waiting to run
nix-build / petalburg-build (push) Waiting to run
nix-build / rustboro-build (push) Waiting to run
nix-check / fmt-check (push) Waiting to run
nix-check / eval-check (push) Waiting to run
Some checks are pending
flakehub / flakehub-publish (push) Waiting to run
git-mirror / gitlab-sync (push) Waiting to run
nix-build / default-build (push) Waiting to run
nix-build / fallarbor-build (push) Waiting to run
nix-build / lavaridge-build (push) Waiting to run
nix-build / mauville-build (push) Waiting to run
nix-build / petalburg-build (push) Waiting to run
nix-build / rustboro-build (push) Waiting to run
nix-check / fmt-check (push) Waiting to run
nix-check / eval-check (push) Waiting to run
This commit is contained in:
parent
d0e5ae23a3
commit
9894536b34
|
@ -11,6 +11,7 @@ in {
|
|||
imports = [
|
||||
./firefox
|
||||
./mail
|
||||
./secrets.nix
|
||||
./windowManagers
|
||||
self.homeManagerModules.default
|
||||
self.inputs.agenix.homeManagerModules.default
|
||||
|
|
|
@ -6,11 +6,6 @@
|
|||
}: let
|
||||
mkPassword = secret: "${lib.getExe' pkgs.coreutils "cat"} ${secret}";
|
||||
in {
|
||||
age.secrets = {
|
||||
achacegaGmail.file = ../../../secrets/mail/achacega_gmail.age;
|
||||
alyraffaufFastmail.file = ../../../secrets/mail/alyraffauf_fastmail.age;
|
||||
};
|
||||
|
||||
accounts.email.accounts = {
|
||||
"alyraffauf@fastmail.com" = {
|
||||
address = "alyraffauf@fastmail.com";
|
||||
|
|
6
homes/aly/secrets.nix
Normal file
6
homes/aly/secrets.nix
Normal file
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
age.secrets = {
|
||||
achacegaGmail.file = ../../secrets/mail/achacega_gmail.age;
|
||||
alyraffaufFastmail.file = ../../secrets/mail/alyraffauf_fastmail.age;
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue