mirror of
https://git.sr.ht/~rouven/nixos-config
synced 2024-11-15 05:13:10 +01:00
59 lines
1.1 KiB
Nix
59 lines
1.1 KiB
Nix
{ config, pkgs, ... }:
|
|
{
|
|
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
|
imports =
|
|
[
|
|
# Include the results of the hardware scan.
|
|
./hardware-configuration.nix
|
|
./modules/networks
|
|
./modules/nginx
|
|
];
|
|
|
|
boot = {
|
|
loader = {
|
|
grub = {
|
|
enable = true;
|
|
version = 2;
|
|
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";
|
|
};
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
vim
|
|
wget
|
|
htop-vim
|
|
];
|
|
programs.git = {
|
|
enable = true;
|
|
config = {
|
|
user.name = "Rouven Seifert";
|
|
user.email = "rouven@rfive.de";
|
|
};
|
|
};
|
|
|
|
# Enable the OpenSSH daemon.
|
|
services.openssh.enable = true;
|
|
users.users.root.openssh.authorizedKeys.keyFiles = [
|
|
#../../keys/ssh/rouven-thinkpad
|
|
../../keys/ssh/rouven-pixel
|
|
../../keys/ssh/rouven-smartcard
|
|
];
|
|
|
|
system.stateVersion = "22.11";
|
|
|
|
}
|
|
|