mirror of
https://github.com/harryssecret/homelab-nix.git
synced 2025-08-07 22:20:33 +02:00
Compare commits
5 commits
3bcae9e7fc
...
e8bb4e0586
Author | SHA1 | Date | |
---|---|---|---|
|
e8bb4e0586 | ||
|
17e6884e73 | ||
|
da776eea73 | ||
|
b6cb128b5f | ||
|
585ab2b5aa |
6 changed files with 57 additions and 37 deletions
|
@ -5,8 +5,7 @@
|
|||
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
|
||||
|
@ -16,6 +15,7 @@
|
|||
direnv
|
||||
zoxide
|
||||
git-crypt
|
||||
nil
|
||||
];
|
||||
|
||||
programs.direnv = {
|
||||
|
|
|
@ -9,14 +9,16 @@
|
|||
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,12 +84,45 @@ in
|
|||
}
|
||||
];
|
||||
|
||||
bookmarks = [ { code = [ { "Github" = [ { href = "https://github.com"; } ]; } ]; } ];
|
||||
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"; } ]; }
|
||||
];
|
||||
}
|
||||
];
|
||||
|
||||
services = [
|
||||
{
|
||||
"Divertissement" = [
|
||||
|
||||
{
|
||||
"Serveur Minecraft poulet" = {
|
||||
icon = "minecraft";
|
||||
|
@ -236,7 +269,6 @@ in
|
|||
};
|
||||
}
|
||||
{
|
||||
|
||||
"Transmission" = {
|
||||
icon = "transmission";
|
||||
description = "s'occupe du téléchargement des fichiers";
|
||||
|
@ -278,15 +310,6 @@ in
|
|||
}
|
||||
{
|
||||
"Administration" = [
|
||||
/*
|
||||
{
|
||||
"Proxmox Backup Server" = {
|
||||
icon = "proxmox-light";
|
||||
description = "Permet de sauvegarder le serveur.";
|
||||
href = "https://${cfg.proxmoxBSIp}:8007";
|
||||
};
|
||||
}
|
||||
*/
|
||||
{
|
||||
"Proxmox VE" = {
|
||||
icon = "proxmox";
|
||||
|
|
|
@ -9,12 +9,11 @@
|
|||
};
|
||||
|
||||
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,10 +6,6 @@
|
|||
...
|
||||
}:
|
||||
{
|
||||
imports = [
|
||||
../shared
|
||||
];
|
||||
|
||||
environment.systemPackages = [
|
||||
inputs.miovim.packages.${system}.default
|
||||
pkgs.curl
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue