lots of stuff

Signed-off-by: gwg313 <gwg313@pm.me>
This commit is contained in:
gwg313 2025-06-30 18:13:14 -04:00
parent cf1df09a9e
commit 58f06d6729
Signed by: gwg313
GPG key ID: 60FF63B4826B7400
55 changed files with 2154 additions and 584 deletions

View file

@ -0,0 +1,112 @@
# Edit this configuration file to define what should be installed on
# your system. Help is available in the configuration.nix(5) man page
# and in the NixOS manual (accessible by running nixos-help).
{
config,
pkgs,
lib,
inputs,
...
}:
{
# sops
sops = {
defaultSopsFile = ../../secrets/secrets.yaml;
defaultSopsFormat = "yaml";
age.keyFile = "/home/gwg313/.config/sops/age/keys.txt";
};
imports = [
# Include the results of the hardware scan.
./hardware-configuration.nix
../../common/nixos/ssh/default.nix
inputs.sops-nix.nixosModules.sops
];
ssh.enable = true;
ssh_guard.enable = true;
ssh_client.enable = false;
services.openssh.authorizedKeysFiles = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINvOfDSjlvegGqfUS18XwXB7SvS2n9/hGYUpKxRb9vgb gwg313@pm.me"
];
services.openssh.settings = {
PermitRootLogin = lib.mkForce "yes";
AllowUsers = lib.mkForce [
"gwg313"
"root"
];
};
users.users.gwg313 = {
isNormalUser = true;
description = "gwg313";
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINvOfDSjlvegGqfUS18XwXB7SvS2n9/hGYUpKxRb9vgb gwg313@pm.me"
];
extraGroups = [
"networkmanager"
"wheel"
];
packages = with pkgs; [ ];
};
users.users = {
root = {
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINvOfDSjlvegGqfUS18XwXB7SvS2n9/hGYUpKxRb9vgb gwg313@pm.me"
];
};
};
# Bootloader.
boot.loader.grub.enable = true;
boot.loader.grub.device = "/dev/sda";
boot.loader.grub.useOSProber = true;
networking.hostName = "kerby"; # Define your hostname.
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
# Configure network proxy if necessary
# networking.proxy.default = "http://user:password@proxy:port/";
# networking.proxy.noProxy = "127.0.0.1,localhost,internal.domain";
# Enable networking
networking.networkmanager.enable = true;
# Set your time zone.
time.timeZone = "America/Toronto";
# Select internationalisation properties.
i18n.defaultLocale = "en_CA.UTF-8";
# Configure keymap in X11
services.xserver.xkb = {
layout = "us";
variant = "";
};
# Define a user account. Don't forget to set a password with passwd.
# Allow unfree packages
nixpkgs.config.allowUnfree = true;
# List packages installed in system profile. To search, run:
# $ nix search wget
environment.systemPackages = with pkgs; [
# vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default.
# wget
];
# Some programs need SUID wrappers, can be configured further or are
# started in user sessions.
# programs.mtr.enable = true;
# programs.gnupg.agent = {
# enable = true;
# enableSSHSupport = true;
# };
# List services that you want to enable:
# 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;
# This value determines the NixOS release from which the default
# settings for stateful data, like file locations and database versions
# on your system were taken. Its perfectly fine and recommended to leave
# this value at the release version of the first install of this system.
# Before changing this value read the documentation for this option
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
system.stateVersion = "24.11"; # Did you read the comment?
}

View file

@ -0,0 +1,43 @@
# Do not modify this file! It was generated by nixos-generate-config
# and may be overwritten by future invocations. Please make changes
# to /etc/nixos/configuration.nix instead.
{
config,
lib,
pkgs,
modulesPath,
...
}:
{
imports = [
(modulesPath + "/profiles/qemu-guest.nix")
];
boot.initrd.availableKernelModules = [
"ata_piix"
"uhci_hcd"
"virtio_pci"
"virtio_scsi"
"sd_mod"
"sr_mod"
];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ ];
boot.extraModulePackages = [ ];
fileSystems."/" = {
device = "/dev/disk/by-uuid/979e137f-7d21-4dac-b6eb-51c8add1cf48";
fsType = "ext4";
};
swapDevices = [ ];
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
# (the default) this is the recommended approach. When using systemd-networkd it's
# still possible to use this option, but it's recommended to use it in conjunction
# with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`.
networking.useDHCP = lib.mkDefault true;
# networking.interfaces.ens18.useDHCP = lib.mkDefault true;
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
}

View file

@ -0,0 +1,15 @@
{ }:
{
services.kerberoskdc = {
enable = true;
realm = "LOCAL.GWG313.XYZ";
databaseFile = "/var/lib/krb5kdc/principal";
adminServer.enable = true;
kadmindPort = 749;
kdcPort = 88;
extraConfig = ''
max_life = 10h
max_renewable_life = 7d
'';
};
}

69
hosts/kerby/kerberos.nix Normal file
View file

@ -0,0 +1,69 @@
{
config,
lib,
pkgs,
...
}:
{
services.krb5kdc = {
enable = true;
realms = {
"EXAMPLE.LOCAL" = {
aclFile = "/etc/krb5kdc/kadm5.acl";
dictFile = "/etc/krb5kdc/kadm5.dict";
databaseName = "/var/lib/krb5kdc/principal";
adminServer = "kerberos.example.local";
supportedEnctypes = [ "aes256-cts-hmac-sha1-96" ];
};
};
};
services.kadmind.enable = true;
services.krb5 = {
enable = true;
libdefaults = {
default_realm = "EXAMPLE.LOCAL";
};
realms = {
"EXAMPLE.LOCAL" = {
kdc = [ "kerberos.example.local" ];
admin_server = "kerberos.example.local";
};
};
};
environment.etc."krb5kdc/kadm5.acl".text = "*/admin@EXAMPLE.LOCAL *";
sops.secrets."kdc/master_password" = { };
sops.secrets."kdc/admin_password" = { };
systemd.services.krb5-bootstrap = {
description = "Bootstrap KDC DB + principals";
wantedBy = [ "multi-user.target" ];
before = [ "krb5kdc.service" ];
serviceConfig = {
Type = "oneshot";
RemainAfterExit = true;
};
script = ''
set -e
DB="/var/lib/krb5kdc/principal"
if [ ! -f "$DB" ]; then
MASTER_PW=$(<${config.sops.secrets."kdc/master_password".path})
ADMIN_PW=$(<${config.sops.secrets."kdc/admin_password".path})
echo "Creating KDC database..."
echo "$MASTER_PW" | kdb5_util create -s -P "$MASTER_PW"
echo "$ADMIN_PW
$ADMIN_PW" | kadmin.local -q "addprinc root/admin"
kadmin.local -q "addprinc -randkey nfs/truenas.example.local"
kadmin.local -q "ktadd -k /etc/krb5kdc/nfs.keytab nfs/truenas.example.local"
fi
'';
};
environment.etc."krb5kdc/nfs.keytab".source = "/etc/krb5kdc/nfs.keytab";
}

11
hosts/kerby/krb5.nix Normal file
View file

@ -0,0 +1,11 @@
{ }:
{
services.krb5 = {
enable = true;
defaultRealm = "LOCAL.GWG313.XYZ";
realms."LOCAL.GWG313.XYZ" = {
kdc = [ "kerby.local.gwg313.xyz" ];
adminServer = "kerby.local.gwg313.xyz";
};
};
}