Upgrade sup.atlanticaweb.fr to 23.05
This commit is contained in:
parent
7c80d88a9d
commit
7bf0b6e7db
|
@ -2,14 +2,16 @@
|
|||
imports = [
|
||||
./hardware-configuration.nix
|
||||
./firewall-services.nix
|
||||
./VPN.nix
|
||||
../modules/users.nix
|
||||
../modules/common.nix
|
||||
../modules/smtp.nix
|
||||
../modules/grafana.nix
|
||||
../docker/podman.nix
|
||||
|
||||
];
|
||||
system.stateVersion = "22.05";
|
||||
boot.cleanTmpDir = true;
|
||||
boot.tmp.cleanOnBoot = true;
|
||||
zramSwap.enable = true;
|
||||
networking.hostName = "sup";
|
||||
services.openssh.enable = true;
|
||||
|
|
|
@ -5,9 +5,11 @@
|
|||
{
|
||||
services.grafana = {
|
||||
enable = true;
|
||||
domain = "sup.atlanticaweb.fr";
|
||||
port = 2342;
|
||||
addr = "192.168.10.108";
|
||||
settings.server = {
|
||||
domain = "sup.atlanticaweb.fr";
|
||||
http_port = 2342;
|
||||
http_addr = "192.168.10.108";
|
||||
};
|
||||
};
|
||||
services.prometheus = {
|
||||
enable = true;
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
createHome = true;
|
||||
home = "/home/alexandre";
|
||||
description = "Alexandre LUCAZEAU";
|
||||
extraGroups = [ "wheel" ];
|
||||
extraGroups = [ "wheel" "docker" "plocate" ];
|
||||
group = "alexandre";
|
||||
shell = pkgs.fish;
|
||||
openssh.authorizedKeys.keys = [ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKUA1RW6JwZasspAp8qmFRFnlV5WXjhLfStAAkM+KYLv lucazeau.alexandre@gmail.com" ];
|
||||
|
|
Loading…
Reference in New Issue