mirror of
https://github.com/harryssecret/homelab-nix.git
synced 2025-08-12 00:20:18 +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) [
|
builtins.elem (lib.getName pkg) [
|
||||||
"terraform"
|
"terraform"
|
||||||
];
|
];
|
||||||
|
# List packages installed in system profile. To search by name, run:
|
||||||
|
# $ nix-env -qaP | grep wget
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
neovim
|
neovim
|
||||||
kitty
|
kitty
|
||||||
|
@ -15,7 +16,6 @@
|
||||||
direnv
|
direnv
|
||||||
zoxide
|
zoxide
|
||||||
git-crypt
|
git-crypt
|
||||||
nil
|
|
||||||
];
|
];
|
||||||
|
|
||||||
programs.direnv = {
|
programs.direnv = {
|
||||||
|
|
|
@ -9,7 +9,6 @@
|
||||||
reverse_proxy 8080
|
reverse_proxy 8080
|
||||||
'';
|
'';
|
||||||
|
|
||||||
/*
|
|
||||||
services.prometheus.exporters.sabnzbd = {
|
services.prometheus.exporters.sabnzbd = {
|
||||||
enable = true;
|
enable = true;
|
||||||
servers = [
|
servers = [
|
||||||
|
@ -20,5 +19,4 @@
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
*/
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ ... }:
|
{ config, ... }:
|
||||||
{
|
{
|
||||||
services.grafana = {
|
services.grafana = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
|
@ -84,45 +84,12 @@ in
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
||||||
bookmarks = [
|
bookmarks = [ { code = [ { "Github" = [ { href = "https://github.com"; } ]; } ]; } ];
|
||||||
{
|
|
||||||
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 = [
|
services = [
|
||||||
{
|
{
|
||||||
"Divertissement" = [
|
"Divertissement" = [
|
||||||
|
|
||||||
{
|
{
|
||||||
"Serveur Minecraft poulet" = {
|
"Serveur Minecraft poulet" = {
|
||||||
icon = "minecraft";
|
icon = "minecraft";
|
||||||
|
@ -269,6 +236,7 @@ in
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
|
|
||||||
"Transmission" = {
|
"Transmission" = {
|
||||||
icon = "transmission";
|
icon = "transmission";
|
||||||
description = "s'occupe du téléchargement des fichiers";
|
description = "s'occupe du téléchargement des fichiers";
|
||||||
|
@ -310,6 +278,15 @@ in
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
"Administration" = [
|
"Administration" = [
|
||||||
|
/*
|
||||||
|
{
|
||||||
|
"Proxmox Backup Server" = {
|
||||||
|
icon = "proxmox-light";
|
||||||
|
description = "Permet de sauvegarder le serveur.";
|
||||||
|
href = "https://${cfg.proxmoxBSIp}:8007";
|
||||||
|
};
|
||||||
|
}
|
||||||
|
*/
|
||||||
{
|
{
|
||||||
"Proxmox VE" = {
|
"Proxmox VE" = {
|
||||||
icon = "proxmox";
|
icon = "proxmox";
|
||||||
|
|
|
@ -16,4 +16,5 @@
|
||||||
reverse_proxy :4000
|
reverse_proxy :4000
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -6,6 +6,10 @@
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
{
|
{
|
||||||
|
imports = [
|
||||||
|
../shared
|
||||||
|
];
|
||||||
|
|
||||||
environment.systemPackages = [
|
environment.systemPackages = [
|
||||||
inputs.miovim.packages.${system}.default
|
inputs.miovim.packages.${system}.default
|
||||||
pkgs.curl
|
pkgs.curl
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue