nixos-config/base.nix

91 lines
2.0 KiB
Nix
Raw Normal View History

2023-01-20 20:21:16 +01:00
{ config, lib, pkgs, inputs, values, ... }:
{
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
networking = {
domain = "home.feal.no";
2023-12-25 02:08:15 +01:00
nameservers = [ "192.168.10.175" "192.168.10.1" "1.1.1.1" ];
useDHCP = lib.mkDefault false;
2023-01-20 20:21:16 +01:00
};
time.timeZone = "Europe/Oslo";
i18n.defaultLocale = "en_US.UTF-8";
console = {
font = "Lat2-Terminus16";
keyMap = lib.mkDefault "no";
2023-01-20 20:21:16 +01:00
};
nix = {
gc = {
automatic = true;
options = "--delete-older-than 2d";
};
2023-09-13 23:21:28 +02:00
settings = {
experimental-features = ["nix-command" "flakes"];
trusted-users = [ "felixalb" ];
builders-use-substitutes = true;
};
2023-01-20 20:21:16 +01:00
registry= {
nixpkgs.flake = inputs.nixpkgs;
};
nixPath = [ "nixpkgs=${inputs.nixpkgs}" ];
};
2023-06-07 21:10:31 +02:00
programs.zsh.enable = true;
2023-04-16 16:49:08 +02:00
environment.systemPackages = with pkgs; [
2023-09-13 23:21:28 +02:00
bat
2023-04-16 16:49:08 +02:00
bottom
2024-01-15 10:06:10 +01:00
eza
2023-09-13 23:21:28 +02:00
git
gnugrep
gnutar
2024-01-15 10:06:10 +01:00
python3
2023-04-16 16:49:08 +02:00
ripgrep
2023-09-13 23:21:28 +02:00
rsync
2024-01-15 10:06:10 +01:00
screen
unzip
2023-09-13 23:21:28 +02:00
wget
2023-04-16 16:49:08 +02:00
];
2023-01-20 20:21:16 +01:00
services.openssh = {
enable = true;
2023-06-07 21:10:31 +02:00
settings = {
PermitRootLogin = "no";
PasswordAuthentication = false;
KbdInteractiveAuthentication = false;
};
extraConfig = ''
AllowTcpForwarding yes
AllowAgentForwarding yes
AuthenticationMethods publickey
'';
2023-01-20 20:21:16 +01:00
};
networking.firewall.allowedTCPPorts = [ 22 ];
2023-01-20 20:21:16 +01:00
users.users.felixalb = {
isNormalUser = true;
2023-12-25 13:31:43 +01:00
extraGroups = [
"wheel"
"docker"
];
2023-04-16 16:49:08 +02:00
uid = 1000;
2023-01-20 20:21:16 +01:00
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIDKzPICGew7uN0cmvRmbwkwTCodTBUgEhkoftQnZuO4Q felixalbrigtsen@gmail.com"
2023-07-25 19:15:19 +02:00
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIBTXSL0w7OUcz1LzEt1T3I3K5RgyNV+MYz0x/1RbpDHQ felixalb@worf"
2023-09-15 17:04:17 +02:00
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFiPHhj0YbklJnJNcxD0IlzPxLTGfv095H5zyS/1Wb64 felixalb@edison.home.feal.no"
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIH5M7hYl3saBNMAo6sczgfUvASEJWFHuERB7xvf4gxst nix-builder-worf"
2023-01-20 20:21:16 +01:00
];
shell = pkgs.zsh;
2023-01-20 20:21:16 +01:00
};
sops.age.sshKeyPaths = [ "/etc/ssh/ssh_host_ed25519_key" ];
2023-01-20 20:21:16 +01:00
}