mirror of
https://github.com/harryssecret/homelab-nix.git
synced 2025-08-08 14:40:19 +02:00
even more fixes
This commit is contained in:
parent
dc18cc850f
commit
33fd7ada93
2 changed files with 29 additions and 15 deletions
|
@ -47,6 +47,13 @@ in
|
||||||
initialHashedPassword = "$y$j9T$H0D6NpMw1EU.oDhbMWrwL.$wDGGBKKGQdzeDRTzq0gWhoLdyUpQ2w6PMmGl.nuQ11/";
|
initialHashedPassword = "$y$j9T$H0D6NpMw1EU.oDhbMWrwL.$wDGGBKKGQdzeDRTzq0gWhoLdyUpQ2w6PMmGl.nuQ11/";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
users.users.deploy = {
|
||||||
|
extraGroups = [ "wheel" ];
|
||||||
|
openssh.authorizedKeys.keys = [
|
||||||
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIP9Yp7TbDhYJ27Sh+LcPXT569bMVwbFrkE4zksfU84l+ harry123@goober"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
users.users.root.initialHashedPassword = "$y$j9T$99/NEnBGoewbrl5eHvTw7/$87rjPrvqs0Ys72338SxZJDibi8p7Fe8Can37rJyhcQ.";
|
users.users.root.initialHashedPassword = "$y$j9T$99/NEnBGoewbrl5eHvTw7/$87rjPrvqs0Ys72338SxZJDibi8p7Fe8Can37rJyhcQ.";
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
|
|
|
@ -17,17 +17,21 @@
|
||||||
systemd = {
|
systemd = {
|
||||||
enable = true;
|
enable = true;
|
||||||
};
|
};
|
||||||
sabnzbd = {
|
# TODO: enable prometheus services based on whether they are enabled or not
|
||||||
enable = true;
|
/*
|
||||||
|
sabnzbd = {
|
||||||
|
enable = true;
|
||||||
|
|
||||||
servers = [
|
servers = [
|
||||||
{
|
{
|
||||||
"sisyphe" = {
|
"sisyphe" = {
|
||||||
baseUrl = "http://nzb.sisyphe.normandy.rougebordeaux.xyz";
|
baseUrl = "http://nzb.sisyphe.normandy.rougebordeaux.xyz";
|
||||||
apiKeyFile = "/run/secrets/sabnbzd_apikey";
|
apiKeyFile = "/run/secrets/sabnbzd_apikey";
|
||||||
}
|
};
|
||||||
];
|
}
|
||||||
};
|
];
|
||||||
|
};
|
||||||
|
*/
|
||||||
redis = {
|
redis = {
|
||||||
enable = true;
|
enable = true;
|
||||||
};
|
};
|
||||||
|
@ -41,11 +45,14 @@
|
||||||
php-fpm = {
|
php-fpm = {
|
||||||
enable = true;
|
enable = true;
|
||||||
};
|
};
|
||||||
nextcloud = {
|
/*
|
||||||
enable = true;
|
TODO: need to fix secrets before
|
||||||
url = "https://cloud.rougebordeaux.xyz";
|
nextcloud = {
|
||||||
tokenFile = "/run/secrets/nextcloudTokenFile";
|
enable = true;
|
||||||
};
|
url = "https://cloud.rougebordeaux.xyz";
|
||||||
|
tokenFile = "/run/secrets/nextcloudTokenFile";
|
||||||
|
};
|
||||||
|
*/
|
||||||
};
|
};
|
||||||
scrapeConfigs = [
|
scrapeConfigs = [
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue