nixos-config/hosts/falkenstein-1/default.nix

68 lines
1.4 KiB
Nix
Raw Normal View History

2023-04-12 17:21:24 +02:00
{ config, pkgs, ... }:
{
nix.settings.experimental-features = [ "nix-command" "flakes" ];
imports =
[
# Include the results of the hardware scan.
./hardware-configuration.nix
2023-05-24 16:37:45 +02:00
./modules/mail
2023-04-12 17:21:24 +02:00
./modules/networks
./modules/nginx
2023-04-13 14:28:09 +02:00
./modules/purge
2023-04-16 16:56:24 +02:00
./modules/trucksimulatorbot
2023-04-12 17:21:24 +02:00
];
boot = {
loader = {
grub = {
enable = true;
efiSupport = true;
efiInstallAsRemovable = true;
device = "/dev/sda";
};
efi.efiSysMountPoint = "/boot/efi";
};
kernelPackages = pkgs.linuxPackages_latest;
#tmpOnTmpfs = true;
};
time.timeZone = "Europe/Berlin";
i18n.defaultLocale = "en_US.UTF-8";
console = {
keyMap = "dvorak";
};
2023-05-26 14:50:29 +02:00
virtualisation.docker.enable = true;
2023-04-12 17:21:24 +02:00
environment.systemPackages = with pkgs; [
vim
wget
htop-vim
2023-05-05 16:37:44 +02:00
helix
2023-05-26 14:50:29 +02:00
docker-compose
2023-04-12 17:21:24 +02:00
];
programs.git = {
enable = true;
config = {
user.name = "Rouven Seifert";
user.email = "rouven@rfive.de";
};
};
2023-04-12 21:14:29 +02:00
services.qemuGuest.enable = true;
2023-04-12 17:21:24 +02:00
# Enable the OpenSSH daemon.
2023-05-24 16:37:45 +02:00
services.openssh = {
enable = true;
2023-05-24 17:08:44 +02:00
settings.PasswordAuthentication = false;
2023-05-24 16:37:45 +02:00
};
2023-04-12 17:21:24 +02:00
users.users.root.openssh.authorizedKeys.keyFiles = [
2023-05-25 20:40:13 +02:00
../../keys/ssh/rouven-thinkpad
2023-04-12 17:21:24 +02:00
../../keys/ssh/rouven-pixel
../../keys/ssh/rouven-smartcard
];
system.stateVersion = "22.11";
}