infrastructure/nixos/common/default.nix

53 lines
1.4 KiB
Nix
Raw Normal View History

2021-11-21 14:35:09 +01:00
{ config, inputs, pkgs, ... }:
2021-10-13 18:17:45 +02:00
{
imports = [
2021-11-21 14:35:09 +01:00
inputs.vault-secrets.nixosModules.vault-secrets
2021-10-13 18:17:45 +02:00
# User account definitions
./users
./services
];
# Clean /tmp on boot.
boot.cleanTmpDir = true;
# Set your time zone.
time.timeZone = "Europe/Amsterdam";
# Nix Settings
nix = {
package = pkgs.nixUnstable;
autoOptimiseStore = true;
2021-10-25 12:50:04 +02:00
binaryCaches =
[ "https://cachix.cachix.org" "https://nix-community.cachix.org" "https://nixpkgs-review-bot.cachix.org" ];
2021-10-13 18:17:45 +02:00
binaryCachePublicKeys = [
"cachix.cachix.org-1:eWNHQldwUO7G2VkjpnjDbWwy4KQ/HNxht7H4SSoMckM="
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
"nixpkgs-review-bot.cachix.org-1:eppgiDjPk7Hkzzz7XlUesk3rcEHqNDozGOrcLc8IqwE="
];
trustedUsers = [ "root" "victor" ];
extraOptions = ''
2021-11-16 13:51:27 +01:00
experimental-features = nix-command flakes ca-references
2021-10-13 18:17:45 +02:00
'';
};
nixpkgs.config.allowUnfree = true;
2021-11-21 21:56:17 +01:00
nixpkgs.overlays = [ (import ../pkgs) ];
2021-10-13 18:17:45 +02:00
# Limit the systemd journal to 100 MB of disk or the
# last 7 days of logs, whichever happens first.
services.journald.extraConfig = ''
SystemMaxUse=100M
MaxFileSec=7day
'';
2021-11-21 14:35:09 +01:00
# Enable SSH daemon support.
services.openssh.enable = true;
vault-secrets = {
vaultPrefix = "nixos/${config.networking.hostName}";
vaultAddress = "http://10.42.42.6:8200/";
approlePrefix = "olympus-${config.networking.hostName}";
};
2021-10-13 18:17:45 +02:00
}