Add of vaulwarden
Some refractoring and start of a more versatil config
This commit is contained in:
parent
372b6bc4bb
commit
d4d7073344
6 changed files with 96 additions and 33 deletions
|
|
@ -2,20 +2,22 @@
|
||||||
# your system. Help is available in the configuration.nix(5) man page
|
# your system. Help is available in the configuration.nix(5) man page
|
||||||
# and in the NixOS manual (accessible by running ‘nixos-help’).
|
# and in the NixOS manual (accessible by running ‘nixos-help’).
|
||||||
|
|
||||||
{ config,pkgs, ... }:
|
{ config,pkgs,lib, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
imports =
|
imports =
|
||||||
[ # Include the results of the hardware scan.
|
[
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
./package.nix
|
./package.nix
|
||||||
|
./module/hostname.nix
|
||||||
|
|
||||||
./module/searXNG.nix
|
./module/searXNG.nix
|
||||||
./module/roundcube.nix
|
./module/roundcube.nix
|
||||||
|
./module/vaultWarden.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
||||||
|
|
||||||
# Bootloader.
|
|
||||||
boot.loader.systemd-boot.enable = true;
|
boot.loader.systemd-boot.enable = true;
|
||||||
boot.loader.efi.canTouchEfiVariables = true;
|
boot.loader.efi.canTouchEfiVariables = true;
|
||||||
|
|
||||||
|
|
@ -29,13 +31,18 @@
|
||||||
# networking.proxy.default = "http://user:password@proxy:port/";
|
# networking.proxy.default = "http://user:password@proxy:port/";
|
||||||
# networking.proxy.noProxy = "127.0.0.1,localhost,internal.domain";
|
# networking.proxy.noProxy = "127.0.0.1,localhost,internal.domain";
|
||||||
|
|
||||||
# Enable networking
|
|
||||||
networking.networkmanager.enable = true;
|
networking.networkmanager.enable = true;
|
||||||
|
|
||||||
# Set your time zone.
|
services.nginx = {
|
||||||
|
enable = true;
|
||||||
|
virtualHosts."${config.HostName}" = {
|
||||||
|
forceSSL = false;
|
||||||
|
enableACME = false;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
time.timeZone = "Europe/Paris";
|
time.timeZone = "Europe/Paris";
|
||||||
|
|
||||||
# Select internationalisation properties.
|
|
||||||
i18n.defaultLocale = "en_US.UTF-8";
|
i18n.defaultLocale = "en_US.UTF-8";
|
||||||
|
|
||||||
i18n.extraLocaleSettings = {
|
i18n.extraLocaleSettings = {
|
||||||
|
|
@ -50,17 +57,14 @@
|
||||||
LC_TIME = "fr_FR.UTF-8";
|
LC_TIME = "fr_FR.UTF-8";
|
||||||
};
|
};
|
||||||
|
|
||||||
# Configure keymap in X11
|
|
||||||
services.xserver.xkb = {
|
services.xserver.xkb = {
|
||||||
layout = "fr";
|
layout = "fr";
|
||||||
variant = "azerty";
|
variant = "azerty";
|
||||||
};
|
};
|
||||||
|
|
||||||
# Configure console keymap
|
|
||||||
console.keyMap = "fr";
|
console.keyMap = "fr";
|
||||||
programs.zsh.enable = true;
|
programs.zsh.enable = true;
|
||||||
|
|
||||||
# Define a user account. Don't forget to set a password with ‘passwd’.
|
|
||||||
users.users.manager = {
|
users.users.manager = {
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
description = "manager";
|
description = "manager";
|
||||||
|
|
@ -116,6 +120,18 @@
|
||||||
useRoutingFeatures = "server"; # or "client" / "both"
|
useRoutingFeatures = "server"; # or "client" / "both"
|
||||||
};
|
};
|
||||||
|
|
||||||
|
security.acme = {
|
||||||
|
acceptTerms = true;
|
||||||
|
defaults.email = "admin+contact@wateir.fr";
|
||||||
|
|
||||||
|
certs."wateir.fr" = {
|
||||||
|
dnsProvider = "ovh";
|
||||||
|
environmentFile = "/etc/acme.env";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
networking.firewall = {
|
networking.firewall = {
|
||||||
enable = true;
|
enable = true;
|
||||||
allowedTCPPorts = [ 443 ];
|
allowedTCPPorts = [ 443 ];
|
||||||
|
|
@ -123,10 +139,6 @@
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Some programs need SUID wrappers, can be configured further or are
|
# Some programs need SUID wrappers, can be configured further or are
|
||||||
# started in user sessions.
|
# started in user sessions.
|
||||||
# programs.mtr.enable = true;
|
# programs.mtr.enable = true;
|
||||||
|
|
@ -139,8 +151,6 @@
|
||||||
TERM = "xterm-256color";
|
TERM = "xterm-256color";
|
||||||
};
|
};
|
||||||
|
|
||||||
# List services that you want to enable:
|
|
||||||
# Enable the OpenSSH daemon.
|
|
||||||
services.openssh.enable = true;
|
services.openssh.enable = true;
|
||||||
|
|
||||||
services.openssh.settings.Macs = [
|
services.openssh.settings.Macs = [
|
||||||
|
|
@ -152,12 +162,6 @@
|
||||||
"hmac-sha2-256"
|
"hmac-sha2-256"
|
||||||
];
|
];
|
||||||
|
|
||||||
# This value determines the NixOS release from which the default
|
|
||||||
# settings for stateful data, like file locations and database versions
|
|
||||||
# on your system were taken. It‘s perfectly fine and recommended to leave
|
|
||||||
# this value at the release version of the first install of this system.
|
|
||||||
# Before changing this value read the documentation for this option
|
|
||||||
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
|
|
||||||
system.stateVersion = "25.11";
|
system.stateVersion = "25.11";
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
13
module/acme.nix
Normal file
13
module/acme.nix
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
{ config, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
security.acme = {
|
||||||
|
acceptTerms = true;
|
||||||
|
defaults.email = "admin+contact@wateir.fr";
|
||||||
|
|
||||||
|
certs."wateir.fr" = {
|
||||||
|
dnsProvider = "ovh";
|
||||||
|
environmentFile = "/etc/acme.env";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
11
module/hostname.nix
Normal file
11
module/hostname.nix
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
|
with lib;
|
||||||
|
|
||||||
|
{
|
||||||
|
options.HostName = mkOption {
|
||||||
|
type = types.str;
|
||||||
|
default = "${config.networking.hostName}.ssh.wateir.fr";
|
||||||
|
description = "Global hostname with domain for all services";
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
@ -1,12 +1,14 @@
|
||||||
{ config, ... }:
|
{ config,pkgs,lib, ... }:
|
||||||
|
|
||||||
{
|
lib.mkIf (config.networking.hostName == "ThinkCentre-Server-004") {
|
||||||
services.roundcube = {
|
services.roundcube = {
|
||||||
enable = true;
|
enable = true;
|
||||||
hostName = "_";
|
hostName = "${config.HostName}";
|
||||||
|
|
||||||
plugins = [ "multiple_accounts" ];
|
plugins = [ "multiple_accounts" ];
|
||||||
|
|
||||||
|
configureNginx = false;
|
||||||
|
|
||||||
extraConfig = ''
|
extraConfig = ''
|
||||||
# PurelyMail is the entreprise who host my mail
|
# PurelyMail is the entreprise who host my mail
|
||||||
$config['default_host'] = 'ssl://imap.purelymail.com';
|
$config['default_host'] = 'ssl://imap.purelymail.com';
|
||||||
|
|
@ -19,14 +21,10 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
services.nginx = {
|
services.nginx = {
|
||||||
enable = true;
|
virtualHosts."${config.HostName}" = {
|
||||||
|
|
||||||
virtualHosts."_" = {
|
|
||||||
listen = [
|
listen = [
|
||||||
{ addr = "0.0.0.0"; port = 1984; }
|
{ addr = "0.0.0.0"; port = 1984; }
|
||||||
];
|
];
|
||||||
forceSSL = false;
|
|
||||||
enableACME = false;
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
{ config,lib,pkgs, ... }:
|
{ config,lib,pkgs, ... }:
|
||||||
|
|
||||||
{
|
lib.mkIf (config.networking.hostName == "ThinkCentre-Server-004"){
|
||||||
services = {
|
services.searx = {
|
||||||
searx = {
|
|
||||||
enable = true;
|
enable = true;
|
||||||
redisCreateLocally = true;
|
redisCreateLocally = true;
|
||||||
package = pkgs.searxng;
|
package = pkgs.searxng;
|
||||||
|
|
||||||
environmentFile = "/etc/searx.env";
|
environmentFile = "/etc/searx.env";
|
||||||
settings.server = {
|
settings.server = {
|
||||||
bind_address = "0.0.0.0";
|
bind_address = "0.0.0.0";
|
||||||
|
|
@ -14,6 +14,8 @@
|
||||||
# see below for the sops or environment file instructions to prevent this
|
# see below for the sops or environment file instructions to prevent this
|
||||||
# secret_key = "$SEARXNG_SECRET";
|
# secret_key = "$SEARXNG_SECRET";
|
||||||
};
|
};
|
||||||
|
settings.engines = lib.mapAttrsToList (name: value: { inherit name; } // value) {
|
||||||
|
"wikidata".disabled = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,35 @@
|
||||||
|
{ config, pkgs, lib, ... }:
|
||||||
|
|
||||||
|
lib.mkIf (config.networking.hostName == "ThinkCentre-Server-004"){
|
||||||
|
services.vaultwarden = {
|
||||||
|
enable = true;
|
||||||
|
|
||||||
|
backupDir = "/var/local/vaultwarden/backup";
|
||||||
|
|
||||||
|
config = {
|
||||||
|
SIGNUPS_ALLOWED = true;
|
||||||
|
ROCKET_PORT = 8222;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
services.nginx = {
|
||||||
|
enable = true;
|
||||||
|
|
||||||
|
virtualHosts = {
|
||||||
|
"${config.HostName}" = {
|
||||||
|
listen = [{ addr = "0.0.0.0"; port = 8000; }];
|
||||||
|
locations."/" = {
|
||||||
|
proxyPass = "http://127.0.0.1:8222";
|
||||||
|
extraConfig = ''
|
||||||
|
proxy_set_header Host $host;
|
||||||
|
proxy_set_header X-Real-IP $remote_addr;
|
||||||
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||||
|
proxy_set_header X-Forwarded-Proto $scheme;
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
networking.firewall.allowedTCPPorts = [ 8000 ];
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue