mirror of
https://github.com/harryssecret/homelab-nix.git
synced 2025-08-09 15:10:19 +02:00
Compare commits
No commits in common. "e8bb4e05865f71215367d744c0f5a5bc2c9e10f5" and "3bcae9e7fcffd572a45d2a1a04f1fa865612d82a" have entirely different histories.
e8bb4e0586
...
3bcae9e7fc
6 changed files with 37 additions and 57 deletions
|
@ -5,7 +5,8 @@
|
|||
builtins.elem (lib.getName pkg) [
|
||||
"terraform"
|
||||
];
|
||||
|
||||
# List packages installed in system profile. To search by name, run:
|
||||
# $ nix-env -qaP | grep wget
|
||||
environment.systemPackages = with pkgs; [
|
||||
neovim
|
||||
kitty
|
||||
|
@ -15,7 +16,6 @@
|
|||
direnv
|
||||
zoxide
|
||||
git-crypt
|
||||
nil
|
||||
];
|
||||
|
||||
programs.direnv = {
|
||||
|
|
|
@ -9,16 +9,14 @@
|
|||
reverse_proxy 8080
|
||||
'';
|
||||
|
||||
/*
|
||||
services.prometheus.exporters.sabnzbd = {
|
||||
enable = true;
|
||||
servers = [
|
||||
{
|
||||
sisyphe = {
|
||||
services.prometheus.exporters.sabnzbd = {
|
||||
enable = true;
|
||||
servers = [
|
||||
{
|
||||
sisyphe = {
|
||||
|
||||
};
|
||||
}
|
||||
];
|
||||
};
|
||||
*/
|
||||
};
|
||||
}
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ ... }:
|
||||
{ config, ... }:
|
||||
{
|
||||
services.grafana = {
|
||||
enable = true;
|
||||
|
@ -10,6 +10,6 @@
|
|||
};
|
||||
|
||||
services.caddy.virtualHosts."http://grafana.sisyphe.normandy.hypervirtual.world".extraConfig = ''
|
||||
reverse_proxy :3000
|
||||
'';
|
||||
reverse_proxy :3000
|
||||
'';
|
||||
}
|
||||
|
|
|
@ -84,45 +84,12 @@ in
|
|||
}
|
||||
];
|
||||
|
||||
bookmarks = [
|
||||
{
|
||||
social = [
|
||||
{
|
||||
"Bluesky" = [
|
||||
{
|
||||
abbr = "bsky";
|
||||
href = "https://bsky.app";
|
||||
}
|
||||
];
|
||||
}
|
||||
{
|
||||
"mastodon" = [
|
||||
{ href = "https://fish.hypervirtual.world"; }
|
||||
];
|
||||
}
|
||||
{
|
||||
"Lemmy" = [
|
||||
{ href = "https://lemmy.world"; }
|
||||
];
|
||||
}
|
||||
];
|
||||
}
|
||||
{
|
||||
code = [
|
||||
{ "Github" = [ { href = "https://github.com"; } ]; }
|
||||
];
|
||||
}
|
||||
{
|
||||
music = [
|
||||
{ "Deezer" = [ { href = "https://deezer.com"; } ]; }
|
||||
{ "Last.fm" = [ { href = "https://last.fm"; } ]; }
|
||||
];
|
||||
}
|
||||
];
|
||||
bookmarks = [ { code = [ { "Github" = [ { href = "https://github.com"; } ]; } ]; } ];
|
||||
|
||||
services = [
|
||||
{
|
||||
"Divertissement" = [
|
||||
|
||||
{
|
||||
"Serveur Minecraft poulet" = {
|
||||
icon = "minecraft";
|
||||
|
@ -269,6 +236,7 @@ in
|
|||
};
|
||||
}
|
||||
{
|
||||
|
||||
"Transmission" = {
|
||||
icon = "transmission";
|
||||
description = "s'occupe du téléchargement des fichiers";
|
||||
|
@ -310,6 +278,15 @@ in
|
|||
}
|
||||
{
|
||||
"Administration" = [
|
||||
/*
|
||||
{
|
||||
"Proxmox Backup Server" = {
|
||||
icon = "proxmox-light";
|
||||
description = "Permet de sauvegarder le serveur.";
|
||||
href = "https://${cfg.proxmoxBSIp}:8007";
|
||||
};
|
||||
}
|
||||
*/
|
||||
{
|
||||
"Proxmox VE" = {
|
||||
icon = "proxmox";
|
||||
|
|
|
@ -9,11 +9,12 @@
|
|||
};
|
||||
|
||||
services.caddy.virtualHosts."http://status.hypervirtual.world".extraConfig = ''
|
||||
reverse_proxy :4000
|
||||
'';
|
||||
|
||||
reverse_proxy :4000
|
||||
'';
|
||||
|
||||
services.caddy.virtualHosts."http://uptime.sisyphe.normandy.hypervirtual.world".extraConfig = ''
|
||||
reverse_proxy :4000
|
||||
'';
|
||||
|
||||
reverse_proxy :4000
|
||||
'';
|
||||
|
||||
|
||||
}
|
||||
|
|
|
@ -6,6 +6,10 @@
|
|||
...
|
||||
}:
|
||||
{
|
||||
imports = [
|
||||
../shared
|
||||
];
|
||||
|
||||
environment.systemPackages = [
|
||||
inputs.miovim.packages.${system}.default
|
||||
pkgs.curl
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue