moved overlays to own folder

made environments folder
This commit is contained in:
Leyla Becker 2024-03-10 19:01:23 -05:00
parent 3b76e4a8a8
commit d20cf49ba2
7 changed files with 189 additions and 132 deletions

View file

@ -0,0 +1,16 @@
{ pkgs, ... }:
{
imports = [
../../users
];
nix.settings.experimental-features = [ "nix-command" "flakes" ];
# Set your time zone.
time.timeZone = "America/Chicago";
# List packages installed in system profile.
environment.systemPackages = with pkgs; [
wget
];
}