feat(nixos): Add marleynet config

This commit is contained in:
punkfairie 2025-02-25 20:12:54 -08:00
parent 88b067c1fe
commit e0240e64ee
Signed by: punkfairie
GPG key ID: B3C5488E9A1A7CA6
7 changed files with 117 additions and 2 deletions

View file

@ -3,7 +3,14 @@
config,
...
}: {
networking.networkmanager.enable = true;
networking = {
networkmanager.enable = true;
networking.wireless.enable = lib.mkIf config.marleyos.isServer false;
firewall = {
enable = true;
allowedTCPPorts = [80 443];
};
wireless.enable = lib.mkIf config.marleyos.isServer false;
};
}

View file

@ -22,6 +22,7 @@ in {
};
services = {
ddclient = enabled;
docker = enabled;
openssh = enabled;
};

View file

@ -0,0 +1,17 @@
{
lib,
config,
...
}: let
cfg = config.marleyos.services.ddclient;
in {
options.marleyos.services.ddclient.enable = lib.mkEnableOption "ddclient";
config = lib.mkIf cfg.enable {
services.ddclient = {
enable = true;
configFile = /home/marley/ddclient.conf;
};
};
}

View file

@ -0,0 +1,22 @@
{
lib,
config,
...
}: let
cfg = config.marleyos.services.prometheus;
in {
options.marleyos.services.prometheus.enable = lib.mkEnableOption "prometheus";
config = lib.mkIf cfg.enable {
services.prometheus = {
exporters = {
node = {
enable = true;
port = 9002;
openFirewall = true;
enabledCollectors = ["systemd"];
};
};
};
};
}

View file

@ -0,0 +1,10 @@
_: final: prev: {
ddclient = prev.polybar.overrideAttrs {
src = final.fetchFromGitHub {
owner = "ddclient";
repo = "ddclient";
rev = "1c0ba9a1260111f2eb75e76718d218ae2ee0b29f";
sha256 = "sha256-O9beXB1pcub2WzdvujpqRYTrZqOSwI8zy9CvWcLpb4o=";
};
};
}

View file

@ -0,0 +1,17 @@
{lib, ...}: let
inherit (lib.marleyos) enabled;
in {
imports = [./hardware-configuration.nix];
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
networking.hostName = "marleynet";
users.users.marley.openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIDcKsDGK8C5W6eRsJQSdAOTFVZnkKRWjnyn4iDR8zMi7 marley@nyx"
# iphone
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIM+hMOzQBPmi6Rjw7fYvwn43w1Dgk+GEooGPnQz2RTcK Generated By Termius"
];
}

View file

@ -0,0 +1,41 @@
# 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 + "/installer/scan/not-detected.nix")
];
boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "ehci_pci" "nvme" "usbhid" "usb_storage" "sd_mod" ];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-amd" ];
boot.extraModulePackages = [ ];
fileSystems."/" =
{ device = "/dev/disk/by-uuid/3f183af5-7f86-4afa-9dd3-bd3638bbe0ff";
fsType = "ext4";
};
fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/71E4-867F";
fsType = "vfat";
options = [ "fmask=0077" "dmask=0077" ];
};
swapDevices =
[ { device = "/dev/disk/by-uuid/42dd4dc9-6dfc-4c45-9e17-8b9049eb3037"; }
];
# 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.enp3s0.useDHCP = lib.mkDefault true;
# networking.interfaces.wlp2s0.useDHCP = lib.mkDefault true;
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
}