NixOS systems config for laptop

This commit is contained in:
2025-12-03 18:06:10 -05:00
commit 1f374d9581
11 changed files with 939 additions and 0 deletions

13
net.nix Normal file
View File

@@ -0,0 +1,13 @@
# Edit this configuration file to define what should be installed on
# your system. Help is available in the configuration.nix(5) man page
# and in the NixOS manual (accessible by running nixos-help).
{ config, pkgs, ... }:
{
# Enable networking
networking.networkmanager.enable = true;
# Set your time zone.
time.timeZone = "America/New_York";
}