dotfiles/hosts/lappy/default.nix

23 lines
261 B
Nix
Raw Normal View History

2023-08-05 21:03:24 -07:00
{ config, pkgs, ... }:
{
imports = [
./hardware-configuration.nix
];
system.nixos.tags = [ "Nya_Beginnings" ];
networking.hostName = "stitchynyan";
networking.networkmanager.enable = true;
time.timeZone = "America/Lost_Angeles";
}