nixos-config/hosts/x86_64-linux/beleth/default.nix

119 lines
3.3 KiB
Nix
Raw Normal View History

2024-04-01 02:29:05 +02:00
{
config,
lib,
pkgs,
...
}:
with lib; {
imports = [
./hardware-configuration.nix
./monitoring.nix
./caddy.nix
2024-11-02 00:28:05 +01:00
./comin.nix
2024-04-01 02:29:05 +02:00
./jellyfin.nix
2024-11-17 20:48:20 +01:00
# ./factorio.nix
2024-04-12 12:03:38 +02:00
./calibre-web.nix
./transmission.nix
2024-10-21 20:33:50 +02:00
./external-users.nix
2024-07-17 13:01:09 +02:00
./fail2ban.nix
2024-04-12 12:03:38 +02:00
./lanrarari.nix
2024-07-31 13:02:54 +02:00
# ./hydra.nix
2024-09-10 16:04:54 +02:00
./conduit.nix
2024-04-18 14:57:24 +02:00
./uptime.nix
./networking.nix
2024-05-16 19:00:47 +02:00
./git.nix
2024-06-19 10:45:20 +02:00
./nextcloud.nix
2024-06-19 11:54:07 +02:00
./paperless.nix
2024-07-15 21:03:34 +02:00
../../docker.nix
2024-07-05 20:44:42 +02:00
# ./borg.nix
2024-06-19 15:34:15 +02:00
# ./nfs.nix
# ../../gc.nix
2024-04-12 12:50:19 +02:00
../../../common
2024-04-01 02:29:05 +02:00
];
2024-08-05 11:52:59 +02:00
services.btrfs.autoScrub.enable = true;
services.btrfs.autoScrub.interval = "weekly";
2024-04-12 12:50:19 +02:00
services.syncthing.settings.gui.insecureSkipHostcheck = true;
2024-04-01 02:29:05 +02:00
nix.settings.experimental-features = ["nix-command" "flakes"];
2024-11-17 20:34:13 +01:00
nixpkgs.config.allowUnfree = true;
2024-04-01 02:29:05 +02:00
nix.settings = {
trusted-users = ["xqtc"];
substituters = [
"https://nix-community.cachix.org"
];
trusted-public-keys = [
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
];
};
# Use the systemd-boot EFI boot loader.
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
networking.hostName = "beleth"; # Define your hostname.
networking.networkmanager.enable = true; # Easiest to use and most distros use this by default.
2024-06-09 19:50:36 +02:00
networking.wireguard.enable = true;
2024-04-01 02:29:05 +02:00
# Set your time zone.
time.timeZone = "Europe/Berlin";
users.users.xqtc = {
isNormalUser = true;
2024-05-27 19:29:50 +02:00
extraGroups = ["wheel" "docker"];
2024-04-01 02:29:05 +02:00
packages = with pkgs; [
tree
];
openssh.authorizedKeys.keys = [
# TODO: Add remaining keys from https://meta.sr.ht/~xqrc.keys
2024-04-12 12:50:19 +02:00
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJTLJqIVwnqFO64rnc66d234TFOdFXpDS9fJUA4/f4in xqtc@alastor"
2024-04-01 02:29:05 +02:00
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIN7UkcmSVo+SeB5Obevz3mf3UHruYxn0UHUzoOs2gDBy xqtc@asmodeus"
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPf3w5bHAssHthg9SPXVpG4w9v8m16X/0J3bjg08P6EA xqtc@seraphim"
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJYa+LoHGGvu12iBufUcr3GD8tsq4LuJdwLjaDkTr0SL xqtc@lilith"
];
};
2024-09-09 20:41:48 +02:00
2024-04-01 02:29:05 +02:00
users.users.root.openssh.authorizedKeys.keys = [
2024-07-01 20:45:31 +02:00
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJTLJqIVwnqFO64rnc66d234TFOdFXpDS9fJUA4/f4in xqtc@alastor"
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIN7UkcmSVo+SeB5Obevz3mf3UHruYxn0UHUzoOs2gDBy xqtc@asmodeus"
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPf3w5bHAssHthg9SPXVpG4w9v8m16X/0J3bjg08P6EA xqtc@seraphim"
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJYa+LoHGGvu12iBufUcr3GD8tsq4LuJdwLjaDkTr0SL xqtc@lilith"
2024-04-01 02:29:05 +02:00
];
2024-04-18 12:12:03 +02:00
programs.bash.blesh.enable = true;
# programs.bash.shellInit = "cd /home/xqtc/nixos-config/; export GIT_REVISION_CONFIG=$(nix flake metadata --json | jq -r '.locked.rev'); echo $GIT_REVISION_CONFIG; cd;";
2024-04-18 12:12:03 +02:00
2024-04-01 02:29:05 +02:00
environment.systemPackages = with pkgs; [
neovim
vim
git
wget
2024-04-18 12:12:03 +02:00
jq
2024-04-18 13:36:44 +02:00
zola
2024-04-01 02:29:05 +02:00
];
programs.mtr.enable = true;
programs.gnupg.agent = {
enable = true;
enableSSHSupport = true;
};
# Enable the OpenSSH daemon.
services.openssh.enable = true;
2024-08-06 13:06:59 +02:00
# programs.ssh.extraConfig = ''
# Host frotting
# HostName 2a0f:be01:0:100::a3
# User communism
# '';
2024-04-01 02:29:05 +02:00
2024-08-06 13:06:59 +02:00
# services.mullvad-vpn.enable = true;
2024-04-12 12:03:38 +02:00
2024-04-01 02:29:05 +02:00
# Open ports in the firewall.
2024-06-16 00:42:51 +02:00
networking.nftables.enable = true;
2024-04-01 02:29:05 +02:00
networking.firewall.allowedTCPPorts = [22 80 443];
2024-06-14 12:14:00 +02:00
networking.firewall.allowedUDPPorts = [51820];
2024-04-01 02:29:05 +02:00
system.stateVersion = "24.05"; # Did you read the comment?
}