Whoops we put core in the wrong place

This commit is contained in:
TheWanderingCrow 2024-09-15 15:09:45 -04:00
parent f3ad2e7d25
commit 7cf8e51d95

18
modules/core.nix Normal file
View file

@ -0,0 +1,18 @@
{
system.stateVersion = "24.05";
time.timeZone = "America/New_York";
environment.systemPackages = with pkgs; [
neovim
wget
git
screen
curl
firefox
];
users.users.crow = {
isNormalUser = true;
extraGroups = [ "wheel" "networking" ];
};
}