dotfiles/nixos/hosts/roshar.nix
2024-11-07 16:25:41 -07:00

17 lines
369 B
Nix

#
# Per-system configuration for Roshar.
#
# vim: et:ts=2:sw=2:
#
{ config, pkgs, ... }:
{
# Set this machine's hostname.
networking.computerName = "roshar";
networking.hostName = "roshar";
networking.localHostName = "roshar";
system.defaults.smb.ServerDescription = "roshar";
# Enable automatic GC to keep this system light.
nix.gc.automatic = true;
}