22 lines
261 B
Nix
22 lines
261 B
Nix
|
|
|
|
{ config, pkgs, ... }:
|
|
|
|
{
|
|
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
];
|
|
|
|
system.nixos.tags = [ "Nya_Beginnings" ];
|
|
|
|
networking.hostName = "stitchynyan";
|
|
networking.networkmanager.enable = true;
|
|
time.timeZone = "America/Lost_Angeles";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|