17 lines
369 B
Nix
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;
|
|
}
|