moved overlays to own folder
made environments folder
This commit is contained in:
parent
3b76e4a8a8
commit
d20cf49ba2
7 changed files with 189 additions and 132 deletions
16
enviroments/common/default.nix
Normal file
16
enviroments/common/default.nix
Normal 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
|
||||
];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue