nixos-config/hosts/titanium/configuration.nix
2025-10-28 16:10:19 -05:00

23 lines
731 B
Nix

{ config, lib, pkgs, ... }:
{
powerManagement.enable = false;
networking.hostName = "titanium";
networking.networkmanager.enable = true;
environment.systemPackages = with pkgs; [
sbctl # Secure-Boot
helix nil # nice for editing '.nix'
discord
signal-desktop
obs-studio
];
services.udev.extraRules = ''
SUBSYSTEM=="usb", ATTRS{idVendor}=="14ed", ATTRS{idProduct}=="1012", MODE="0666", GROUP="audio"
'';
# Hardware Specific programs...
#programs.ryzen-monitor-ng.enable = true;
#programs.rog-control-center.enable = true;
services.openssh.enable = true;
services.tailscale.enable = true;
networking.firewall.trustedInterfaces = [ "tailscale0" ];
system.stateVersion = "25.05";
}