feat: add new host and start modularizing system configuration
This commit is contained in:
parent
ebe58addaa
commit
4a8c953223
22 changed files with 1050 additions and 288 deletions
19
hosts/titanium/configuration.nix
Normal file
19
hosts/titanium/configuration.nix
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
{
|
||||
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
|
||||
];
|
||||
# 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";
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue