From e365309bf06aa905d8f0f8651dc4ef33dd6939b5 Mon Sep 17 00:00:00 2001 From: punkfairie Date: Sat, 8 Mar 2025 19:23:04 -0800 Subject: [PATCH] feat(systems): Add marleycentre config --- .../marley@marleycentre/default.nix | 9 ++++ systems/x86_64-linux/marleycentre/default.nix | 25 +++++++++++ .../marleycentre/hardware-configuration.nix | 41 +++++++++++++++++++ 3 files changed, 75 insertions(+) create mode 100644 homes/x86_64-linux/marley@marleycentre/default.nix create mode 100644 systems/x86_64-linux/marleycentre/default.nix create mode 100644 systems/x86_64-linux/marleycentre/hardware-configuration.nix diff --git a/homes/x86_64-linux/marley@marleycentre/default.nix b/homes/x86_64-linux/marley@marleycentre/default.nix new file mode 100644 index 0000000..a6f3da7 --- /dev/null +++ b/homes/x86_64-linux/marley@marleycentre/default.nix @@ -0,0 +1,9 @@ +{lib, ...}: let + inherit (lib.marleyos) enabled; +in { + marleyos = { + bundles.server = enabled; + }; + + home.stateVersion = "24.05"; +} diff --git a/systems/x86_64-linux/marleycentre/default.nix b/systems/x86_64-linux/marleycentre/default.nix new file mode 100644 index 0000000..1429738 --- /dev/null +++ b/systems/x86_64-linux/marleycentre/default.nix @@ -0,0 +1,25 @@ +{lib, ...}: let + inherit (lib.marleyos) enabled; +in { + imports = [./hardware-configuration.nix]; + + networking.hostName = "marleycentre"; + + marleyos = { + bundles.server = enabled; + }; + + users.users.marley.openssh.authorizedKeys.keys = [ + "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIAHOJsPkSBBw03QEFRtxnIdLF3OxNdU6T9LuklnkYfVw marley@nyx" + + # iphone + "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIM+hMOzQBPmi6Rjw7fYvwn43w1Dgk+GEooGPnQz2RTcK Generated By Termius" + ]; + + networking.firewall = { + allowedTCPPorts = [6881]; + allowedUDPPorts = [6881]; + }; + + system.stateVersion = "24.05"; +} diff --git a/systems/x86_64-linux/marleycentre/hardware-configuration.nix b/systems/x86_64-linux/marleycentre/hardware-configuration.nix new file mode 100644 index 0000000..03f1ea7 --- /dev/null +++ b/systems/x86_64-linux/marleycentre/hardware-configuration.nix @@ -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 = [ "nvme" "xhci_pci" "usb_storage" "usbhid" "sd_mod" ]; + boot.initrd.kernelModules = [ ]; + boot.kernelModules = [ "kvm-amd" ]; + boot.extraModulePackages = [ ]; + + fileSystems."/" = + { device = "/dev/disk/by-uuid/5187416d-4e3c-4abf-b52a-937289835667"; + fsType = "ext4"; + }; + + fileSystems."/boot" = + { device = "/dev/disk/by-uuid/7C15-8BC4"; + fsType = "vfat"; + options = [ "fmask=0077" "dmask=0077" ]; + }; + + swapDevices = + [ { device = "/dev/disk/by-uuid/9239bab6-73fd-4e10-8a13-414e067c17cf"; } + ]; + + # 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..useDHCP`. + networking.useDHCP = lib.mkDefault true; + # networking.interfaces.enp2s0f1.useDHCP = lib.mkDefault true; + # networking.interfaces.wlp1s0.useDHCP = lib.mkDefault true; + + nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; + hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; +}