mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-01-11 09:44:08 -05:00
18 lines
308 B
Nix
18 lines
308 B
Nix
{
|
|
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" ];
|
|
};
|
|
}
|