nixos-config/atauno/configuration.nix

191 lines
6.2 KiB
Nix
Raw Normal View History

2024-02-04 19:17:33 +00:00
# Edit this configuration file to define what should be installed on
# your system. Help is available in the configuration.nix(5) man page, on
# https://search.nixos.org/options and in the NixOS manual (`nixos-help`).
{ config, lib, pkgs, ... }:
{
imports =
2024-02-07 02:50:30 +00:00
[
# Include the results of the hardware scan.
2024-02-04 19:17:33 +00:00
./hardware-configuration.nix
];
2024-02-04 19:19:21 +00:00
nix.settings.experimental-features = [ "nix-command" "flakes" ];
nixpkgs.config.allowUnfree = true;
2024-02-04 19:17:33 +00:00
# Use the systemd-boot EFI boot loader.
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
2024-02-07 02:50:30 +00:00
boot.supportedFilesystems = [ "zfs" ];
boot.zfs.extraPools = [ "alex1" ];
boot.zfs.forceImportRoot = false;
2024-02-04 19:17:33 +00:00
networking.hostName = "atauno"; # Define your hostname.
2024-02-07 02:50:30 +00:00
networking.hostId = "ae3574b1"; # for zfs importing pools during boot
2024-02-04 19:17:33 +00:00
# Set your time zone.
time.timeZone = "America/New_York";
2024-02-07 02:50:30 +00:00
# Define a user account. Don't forget to set a password with passwd.
users.users = {
alex = {
isNormalUser = true;
extraGroups = [ "wheel" ]; # Enable sudo for the user.
packages = with pkgs; [ git ];
};
matson = {
isNormalUser = true;
extraGroups = [ ];
};
};
2024-02-04 19:17:33 +00:00
2024-02-07 02:50:30 +00:00
# List packages installed in system profile. To search, run:
# $ nix search wget
environment.systemPackages = with pkgs; [
2024-02-14 22:25:21 +00:00
magic-wormhole
2024-02-12 01:32:39 +00:00
nfs-utils
2024-02-07 02:50:30 +00:00
vim
2024-02-11 18:58:19 +00:00
wireguard-tools
2024-02-07 02:50:30 +00:00
];
2024-02-04 19:17:33 +00:00
2024-02-07 02:50:30 +00:00
# List services that you want to enable:
2024-02-14 22:44:40 +00:00
services.k3s.enable = true;
services.k3s.role = "server";
services.k3s.extraFlags = toString [
# "--kubelet-arg=v=4" # Optionally add additional args to k3s
"--tls-san=atauno.com"
];
2024-02-04 19:17:33 +00:00
2024-02-11 18:57:20 +00:00
# services.nfs.server.enable = true;
2024-02-10 20:56:59 +00:00
2024-02-07 02:50:30 +00:00
services.samba-wsdd = {
# make shares visible for Windows clients
enable = true;
openFirewall = true;
2024-02-04 19:17:33 +00:00
};
2024-02-07 02:50:30 +00:00
services.samba = {
enable = true;
securityType = "user";
extraConfig = ''
workgroup = WORKGROUP
server string = atauno
netbios name = atauno
security = user
#use sendfile = yes
#max protocol = smb2
# note: localhost is the ipv6 localhost ::1
hosts allow = 192.168.1. 127.0.0.1 localhost
hosts deny = 0.0.0.0/0
guest account = nobody
map to guest = bad user
'';
shares = {
family = {
path = "/zfs/family";
browseable = "yes";
"read only" = "no";
"guest ok" = "no";
"force create mode" = 774;
"force user" = "matson";
"force group" = "users";
};
};
2024-02-04 19:17:33 +00:00
};
# Enable the OpenSSH daemon.
services.openssh.enable = true;
# Open ports in the firewall.
# networking.firewall.allowedTCPPorts = [ ... ];
# networking.firewall.allowedUDPPorts = [ ... ];
# Or disable the firewall altogether.
networking.firewall.enable = false;
2024-02-11 19:36:13 +00:00
# enable NAT
networking.nat.enable = true;
networking.nat.externalInterface = "enp42s0";
networking.nat.internalInterfaces = [ "wg0" ];
networking.firewall = {
allowedUDPPorts = [ 51820 ];
};
networking.wireguard.interfaces = {
# "wg0" is the network interface name. You can name the interface arbitrarily.
wg0 = {
# Determines the IP address and subnet of the server's end of the tunnel interface.
2024-02-14 22:42:55 +00:00
ips = [ "10.100.0.1/32" ];
2024-02-11 19:36:13 +00:00
# The port that WireGuard listens to. Must be accessible by the client.
listenPort = 51820;
# This allows the wireguard server to route your traffic to the internet and hence be like a VPN
# For this to work you have to set the dnsserver IP of your router (or dnsserver of choice) in your clients
postSetup = ''
${pkgs.iptables}/bin/iptables -t nat -A POSTROUTING -s 10.100.0.0/24 -o eth0 -j MASQUERADE
'';
# This undoes the above command
postShutdown = ''
${pkgs.iptables}/bin/iptables -t nat -D POSTROUTING -s 10.100.0.0/24 -o eth0 -j MASQUERADE
'';
# Path to the private key file.
#
# Note: The private key can also be included inline via the privateKey option,
# but this makes the private key world-readable; thus, using privateKeyFile is
# recommended.
privateKeyFile = "/home/alex/wireguard-keys/private";
peers = [
# List of allowed peers.
{
# Feel free to give a meaning full name
# Public key of the peer (not a file path).
2024-02-13 19:41:57 +00:00
# nixos76 laptop
2024-02-11 19:36:13 +00:00
publicKey = "KVViY+Bgu7PoBeS+rthcyQVQB03IdolxDzc5ZwsdNnM=";
# List of IPs assigned to this peer within the tunnel subnet. Used to configure routing.
2024-02-14 22:42:55 +00:00
allowedIPs = [ "10.100.0.2/32" ];
2024-02-11 19:36:13 +00:00
}
2024-02-13 19:05:45 +00:00
{
# josh's laptop
publicKey = "MdHzEaX6BkgOLZcIAFdgxYt0iDdh2vL25jMjuTFVDVM=";
2024-02-14 22:42:55 +00:00
allowedIPs = [ "10.100.0.3/32" ];
2024-02-13 19:41:57 +00:00
}
{
# alex android op9t
publicKey = "zVEFb82M79UoBpAkgbiN0MWQqcjmChTFDLQOSRY/VRk=";
2024-02-14 22:42:55 +00:00
allowedIPs = [ "10.100.0.4/32" ];
2024-02-13 19:05:45 +00:00
}
2024-02-11 19:36:13 +00:00
];
};
};
2024-02-04 19:17:33 +00:00
# Copy the NixOS configuration file and link it from the resulting system
# (/run/current-system/configuration.nix). This is useful in case you
# accidentally delete configuration.nix.
# system.copySystemConfiguration = true;
# This option defines the first version of NixOS you have installed on this particular machine,
# and is used to maintain compatibility with application data (e.g. databases) created on older NixOS versions.
#
# Most users should NEVER change this value after the initial install, for any reason,
# even if you've upgraded your system to a new NixOS release.
#
# This value does NOT affect the Nixpkgs version your packages and OS are pulled from,
# so changing it will NOT upgrade your system - see https://nixos.org/manual/nixos/stable/#sec-upgrading for how
# to actually do that.
#
# This value being lower than the current NixOS release does NOT mean your system is
# out of date, out of support, or vulnerable.
#
# Do NOT change this value unless you have manually inspected all the changes it would make to your configuration,
# and migrated your data accordingly.
#
# For more information, see `man configuration.nix` or https://nixos.org/manual/nixos/stable/options#opt-system.stateVersion .
system.stateVersion = "24.05"; # Did you read the comment?
2024-02-07 02:50:30 +00:00
}