Ajout config OAuth pour grafana
This commit is contained in:
parent
1f446740cd
commit
fefb6ce762
2 changed files with 38 additions and 0 deletions
19
flake.nix
19
flake.nix
|
@ -1,6 +1,16 @@
|
|||
{
|
||||
description = "A simple system flake using some Aux defaults";
|
||||
|
||||
nixConfig = {
|
||||
extra-substituters = [
|
||||
"https://nix-community.cachix.org"
|
||||
];
|
||||
extra-trusted-public-keys = [
|
||||
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
|
||||
];
|
||||
};
|
||||
|
||||
|
||||
inputs = {
|
||||
nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.05";
|
||||
home-manager = {
|
||||
|
@ -230,6 +240,15 @@
|
|||
"${inputs.self}/systems"
|
||||
"${inputs.self}/services"
|
||||
{
|
||||
microvm = {
|
||||
volumes = [
|
||||
{
|
||||
mountPoint = "/media";
|
||||
image = "/var/lib/microvms/authentik/media.img";
|
||||
size = 2048;
|
||||
}
|
||||
];
|
||||
};
|
||||
services.vm = {
|
||||
enable = true;
|
||||
hostname = "authentik";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue