CrOS/modules/core.nix
2024-09-15 15:21:02 -04:00

23 lines
348 B
Nix

{
config,
lib,
pkgs,
...
}: {
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" ];
};
}