2023-11-19 23:12:21 +01:00
|
|
|
{
|
|
|
|
inputs,
|
|
|
|
outputs,
|
|
|
|
lib,
|
|
|
|
config,
|
|
|
|
pkgs,
|
2024-01-19 01:53:05 +01:00
|
|
|
nixpkgs-stable,
|
2023-11-19 23:12:21 +01:00
|
|
|
...
|
|
|
|
}: {
|
2023-11-20 11:51:01 +01:00
|
|
|
imports = [
|
|
|
|
# If you want to use modules your own flake exports (from modules/home-manager):
|
|
|
|
# outputs.homeManagerModules.example
|
2024-03-02 23:15:23 +01:00
|
|
|
outputs.nixosModules.contabo.wan
|
2023-11-20 11:53:42 +01:00
|
|
|
inputs.home-manager.nixosModules.home-manager
|
2023-11-20 11:51:01 +01:00
|
|
|
# Or modules exported from other flakes (such as nix-colors):
|
|
|
|
# inputs.nix-colors.homeManagerModules.default
|
|
|
|
|
|
|
|
# You can also split up your configuration and import pieces of it here:
|
|
|
|
# ./nvim.nix
|
2023-11-20 11:52:32 +01:00
|
|
|
./hardware-configuration.nix
|
2024-01-09 13:19:42 +01:00
|
|
|
|
2024-02-07 13:50:03 +01:00
|
|
|
# Import shared settings
|
|
|
|
../../shared
|
2024-01-30 12:03:29 +01:00
|
|
|
|
2024-02-22 14:35:08 +01:00
|
|
|
# Import server settings
|
2024-02-07 13:50:03 +01:00
|
|
|
../../server
|
2023-11-20 11:51:01 +01:00
|
|
|
];
|
2023-11-20 12:01:14 +01:00
|
|
|
|
2023-11-21 18:35:54 +01:00
|
|
|
boot.tmp.cleanOnBoot = true;
|
2023-11-21 14:55:19 +01:00
|
|
|
zramSwap.enable = false;
|
|
|
|
networking.domain = "";
|
2024-03-02 22:01:05 +01:00
|
|
|
services.openssh = {
|
|
|
|
enable = true;
|
|
|
|
# require public key authentication for better security
|
|
|
|
settings.PasswordAuthentication = false;
|
|
|
|
settings.KbdInteractiveAuthentication = false;
|
|
|
|
settings.PermitRootLogin = "no";
|
|
|
|
};
|
2023-11-21 14:55:19 +01:00
|
|
|
|
2023-11-20 12:01:14 +01:00
|
|
|
nixpkgs = {
|
|
|
|
# You can add overlays here
|
|
|
|
overlays = [
|
|
|
|
];
|
|
|
|
# Configure your nixpkgs instance
|
|
|
|
config = {
|
|
|
|
# Disable if you don't want unfree packages
|
|
|
|
allowUnfree = true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2023-11-20 16:44:23 +01:00
|
|
|
#Set up sops config, and configure where the keyfile is, then set the mode for the unencrypted keys
|
2023-12-28 12:47:58 +01:00
|
|
|
sops.defaultSopsFile = ./secrets/sops.yaml;
|
2023-11-20 16:17:34 +01:00
|
|
|
|
2023-11-19 23:12:21 +01:00
|
|
|
nix = {
|
|
|
|
gc = {
|
|
|
|
automatic = true;
|
|
|
|
dates = "weekly";
|
|
|
|
options = "--delete-older-than 7d";
|
|
|
|
};
|
|
|
|
# This will add each flake input as a registry
|
|
|
|
# To make nix3 commands consistent with your flake
|
|
|
|
registry = lib.mapAttrs (_: value: {flake = value;}) inputs;
|
|
|
|
|
|
|
|
# This will additionally add your inputs to the system's legacy channels
|
|
|
|
# Making legacy nix commands consistent as well, awesome!
|
|
|
|
nixPath = lib.mapAttrsToList (key: value: "${key}=${value.to.path}") config.nix.registry;
|
|
|
|
|
|
|
|
settings = {
|
|
|
|
# Enable flakes and new 'nix' command
|
|
|
|
experimental-features = "nix-command flakes";
|
|
|
|
# Deduplicate and optimize nix store
|
|
|
|
auto-optimise-store = true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2024-01-19 15:25:52 +01:00
|
|
|
environment.systemPackages = with pkgs; [
|
2023-11-24 21:44:59 +01:00
|
|
|
akkoma
|
2023-11-23 14:24:44 +01:00
|
|
|
fzf
|
2024-01-21 22:58:18 +01:00
|
|
|
matrix-conduit
|
2023-11-24 13:07:39 +01:00
|
|
|
docker
|
|
|
|
docker-compose
|
2023-12-26 16:35:33 +01:00
|
|
|
gitea
|
2023-11-27 14:42:44 +01:00
|
|
|
gotosocial
|
2023-11-19 23:12:21 +01:00
|
|
|
alejandra
|
2023-11-24 21:44:59 +01:00
|
|
|
exiftool
|
|
|
|
imagemagick
|
2023-11-23 17:00:05 +01:00
|
|
|
ffmpeg
|
2024-02-09 22:00:23 +01:00
|
|
|
#aria2
|
|
|
|
#jellyfin
|
|
|
|
#jellyfin-web
|
|
|
|
#jellyfin-ffmpeg
|
2023-12-20 10:04:24 +01:00
|
|
|
nextcloud28
|
2023-11-20 11:51:01 +01:00
|
|
|
nginx
|
2023-11-23 19:26:52 +01:00
|
|
|
onlyoffice-documentserver
|
2023-12-21 20:57:21 +01:00
|
|
|
postgresql_16
|
2023-11-23 17:01:37 +01:00
|
|
|
python3
|
2023-11-24 21:44:59 +01:00
|
|
|
rabbitmq-server
|
2023-12-17 22:27:04 +01:00
|
|
|
roundcube
|
2023-12-21 23:38:01 +01:00
|
|
|
roundcubePlugins.contextmenu
|
|
|
|
roundcubePlugins.carddav
|
|
|
|
roundcubePlugins.custom_from
|
|
|
|
roundcubePlugins.persistent_login
|
|
|
|
roundcubePlugins.thunderbird_labels
|
2023-11-23 17:06:20 +01:00
|
|
|
youtube-dl
|
2023-11-19 23:12:21 +01:00
|
|
|
];
|
|
|
|
|
2024-03-01 15:04:14 +01:00
|
|
|
# Create an auto-update systemd service that runs every day
|
2024-03-01 15:53:50 +01:00
|
|
|
system.autoUpgrade = {
|
|
|
|
flake = "git+https://git.lillianviolet.dev/Lillian-Violet/NixOS-Config.git";
|
|
|
|
dates = "daily";
|
|
|
|
enable = true;
|
2024-03-01 14:53:40 +01:00
|
|
|
};
|
|
|
|
|
2024-03-03 00:21:14 +01:00
|
|
|
systemd.services.systemd-networkd.serviceConfig.Environment = "SYSTEMD_LOG_LEVEL=debug";
|
2023-11-19 23:12:21 +01:00
|
|
|
# Enable networking
|
|
|
|
networking.networkmanager.enable = true;
|
2024-01-04 23:35:52 +01:00
|
|
|
networking.nat.enable = true;
|
|
|
|
networking.nat.internalInterfaces = ["ve-+"];
|
|
|
|
networking.nat.externalInterface = "ens18";
|
2024-03-01 00:09:00 +01:00
|
|
|
networking.enableIPv6 = lib.mkForce true;
|
2024-03-03 14:21:32 +01:00
|
|
|
networking.nameservers = ["2a02:c207::1:53" "2a02:c207::2:53"];
|
2023-11-19 23:12:21 +01:00
|
|
|
|
2023-12-05 14:30:54 +01:00
|
|
|
networking.firewall.enable = true;
|
|
|
|
|
2023-12-18 21:39:33 +01:00
|
|
|
networking.firewall.allowedTCPPorts = [22 80 443];
|
2023-11-19 23:20:16 +01:00
|
|
|
|
2024-03-02 23:15:23 +01:00
|
|
|
networking.useNetworkd = true;
|
|
|
|
|
2024-03-03 14:21:32 +01:00
|
|
|
# networking.useDHCP = false;
|
2024-03-02 23:21:19 +01:00
|
|
|
|
2024-03-03 14:21:32 +01:00
|
|
|
# modules.contabo.wan = {
|
|
|
|
# enable = true;
|
|
|
|
# macAddress = "00:50:56:43:01:e2"; # changeme
|
|
|
|
# ipAddresses = [
|
|
|
|
# "192.0.2.0/32"
|
|
|
|
# "2001:db8::1/64"
|
|
|
|
# ];
|
|
|
|
# };
|
2024-03-02 23:15:23 +01:00
|
|
|
|
2023-11-19 23:12:21 +01:00
|
|
|
# Set your time zone.
|
|
|
|
time.timeZone = "Europe/Amsterdam";
|
|
|
|
|
|
|
|
programs.zsh = {
|
|
|
|
enable = true;
|
|
|
|
};
|
|
|
|
|
2023-11-22 17:46:20 +01:00
|
|
|
programs.git = {
|
|
|
|
enable = true;
|
|
|
|
};
|
|
|
|
|
2023-11-19 23:20:16 +01:00
|
|
|
security.acme = {
|
|
|
|
acceptTerms = true;
|
2023-11-21 18:40:55 +01:00
|
|
|
defaults.email = "letsencrypt@gladtherescake.eu";
|
2023-11-19 23:20:16 +01:00
|
|
|
};
|
|
|
|
|
2023-12-19 11:19:29 +01:00
|
|
|
# users.groups.virtualMail = {};
|
2023-11-25 00:48:47 +01:00
|
|
|
|
2023-11-19 23:12:21 +01:00
|
|
|
# Enable completion of system packages by zsh
|
|
|
|
environment.pathsToLink = ["/share/zsh"];
|
|
|
|
|
|
|
|
home-manager = {
|
|
|
|
extraSpecialArgs = {inherit inputs outputs;};
|
|
|
|
users = {
|
|
|
|
# Import your home-manager configuration
|
2024-02-07 13:52:23 +01:00
|
|
|
lillian = import ../../../home-manager/hosts/queen;
|
2023-11-19 23:12:21 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
networking.hostName = "queen";
|
|
|
|
|
2023-11-21 15:30:15 +01:00
|
|
|
boot.loader.grub.enable = true;
|
2023-12-18 22:17:37 +01:00
|
|
|
boot.loader.grub.configurationLimit = 3;
|
2023-11-20 12:01:14 +01:00
|
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
|
|
|
|
2023-11-19 23:12:21 +01:00
|
|
|
# https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion
|
2024-01-19 15:33:18 +01:00
|
|
|
system.stateVersion = "unstable";
|
2023-11-19 23:12:21 +01:00
|
|
|
}
|