mirror of
https://codeberg.org/muon/home.git
synced 2025-12-06 08:07:45 +00:00
Add aerc pw script
This commit is contained in:
parent
d69b7bc3c1
commit
45044a8dbe
2 changed files with 9 additions and 1 deletions
|
|
@ -1,4 +1,4 @@
|
||||||
{ pkgs, lib, osConfig, inputs, ... }:
|
{ pkgs, lib, config, osConfig, inputs, ... }:
|
||||||
let cfg = osConfig.mods;
|
let cfg = osConfig.mods;
|
||||||
in {
|
in {
|
||||||
imports = [ inputs.impermanence.homeManagerModules.impermanence ];
|
imports = [ inputs.impermanence.homeManagerModules.impermanence ];
|
||||||
|
|
@ -13,6 +13,13 @@ in {
|
||||||
mods.desktop.development.enable = true;
|
mods.desktop.development.enable = true;
|
||||||
mods.desktop.productivity.enable = false;
|
mods.desktop.productivity.enable = false;
|
||||||
|
|
||||||
|
home.file = {
|
||||||
|
".config/aerc/pw.sh" = {
|
||||||
|
text = "cat ${config.sops.secrets.hr-password.path}";
|
||||||
|
executable = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
# Hardware preferences
|
# Hardware preferences
|
||||||
|
|
||||||
## Monitors
|
## Monitors
|
||||||
|
|
|
||||||
|
|
@ -7,5 +7,6 @@ in with lib; {
|
||||||
defaultSopsFile = ./secrets.yaml;
|
defaultSopsFile = ./secrets.yaml;
|
||||||
secrets.zipline-auth = { };
|
secrets.zipline-auth = { };
|
||||||
secrets.atuin-auth = { };
|
secrets.atuin-auth = { };
|
||||||
|
secrets.hr-password = { };
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue