NixOS-Config/nixos/hosts/queen/configuration.nix

157 lines
3.7 KiB
Nix
Raw Normal View History

{
inputs,
outputs,
lib,
config,
pkgs,
2024-01-19 01:53:05 +01:00
nixpkgs-stable,
...
}: {
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
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-02-07 13:50:03 +01:00
# Import shared settings
../../shared
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 = "";
services.openssh.enable = true;
2023-11-20 12:01:14 +01:00
nixpkgs = {
# You can add overlays here
overlays = [
# You can also add overlays exported from other flakes:
# neovim-nightly-overlay.overlays.default
# Or define it inline, for example:
# (final: prev: {
# hi = final.hello.overrideAttrs (oldAttrs: {
# patches = [ ./change-hello-to-hi.patch ];
# });
# })
];
# 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
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; [
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
gitea
gotosocial
alejandra
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
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
];
# 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";
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
# 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
# Enable completion of system packages by zsh
environment.pathsToLink = ["/share/zsh"];
home-manager = {
extraSpecialArgs = {inherit inputs outputs;};
users = {
# Import your home-manager configuration
lillian = import ../../../home-manager/hosts/queen;
};
};
networking.hostName = "queen";
2023-11-21 15:30:15 +01:00
boot.loader.grub.enable = true;
boot.loader.grub.configurationLimit = 3;
2023-11-20 12:01:14 +01:00
boot.loader.efi.canTouchEfiVariables = true;
# https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion
system.stateVersion = "unstable";
}