CrOS/modules/core.nix
2024-09-16 08:45:50 -04:00

14 lines
224 B
Nix

{
config,
lib,
pkgs,
...
}: {
system.stateVersion = "24.05";
time.timeZone = "America/New_York";
users.users.crow = {
isNormalUser = true;
extraGroups = [ "wheel" "networking" ];
};
}