forked from stitchy/dotfiles
23 lines
261 B
Nix
23 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";
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
}
|