mirror of
https://github.com/caperren/nixos-configs.git
synced 2025-12-31 11:34:18 +00:00
Make fan service restart after secrets decryption, undo temp changes
This commit is contained in:
@@ -31,8 +31,6 @@
|
||||
../../modules/system/security.nix
|
||||
../../modules/system/systemd-boot.nix
|
||||
|
||||
../../modules/system/ilo-management.nix
|
||||
|
||||
# Application Groups
|
||||
../../modules/application-groups/3d-design.nix
|
||||
../../modules/application-groups/android.nix
|
||||
|
||||
@@ -9,7 +9,6 @@
|
||||
../../modules/system/cpu-intel.nix
|
||||
../../modules/system/fonts.nix
|
||||
../../modules/system/home-manager-settings.nix
|
||||
../../modules/system/ilo-management.nix
|
||||
../../modules/system/internationalization.nix
|
||||
../../modules/system/networking.nix
|
||||
../../modules/system/nix-settings.nix
|
||||
@@ -23,6 +22,18 @@
|
||||
|
||||
time.timeZone = "America/Los_Angeles";
|
||||
|
||||
sops.secrets = {
|
||||
"ssh/ilouser/id_rsa" = {
|
||||
sopsFile = ../../secrets/default.yaml;
|
||||
path = "/root/.ssh/ilo_id_rsa";
|
||||
restartUnits = [ "hpe-silent-fans.service" ];
|
||||
};
|
||||
"ssh/ilouser/id_rsa_pub" = {
|
||||
sopsFile = ../../secrets/default.yaml;
|
||||
path = "/root/.ssh/ilo_id_rsa.pub";
|
||||
};
|
||||
};
|
||||
|
||||
systemd = {
|
||||
services.hpe-ilo-keepalive = {
|
||||
enable = true;
|
||||
|
||||
@@ -1,13 +0,0 @@
|
||||
{ config, pkgs, ... }:
|
||||
{
|
||||
sops.secrets = {
|
||||
"ssh/ilouser/id_rsa" = {
|
||||
sopsFile = ../../secrets/default.yaml;
|
||||
path = "/root/.ssh/ilo_id_rsa";
|
||||
};
|
||||
"ssh/ilouser/id_rsa_pub" = {
|
||||
sopsFile = ../../secrets/default.yaml;
|
||||
path = "/root/.ssh/ilo_id_rsa.pub";
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user