1
0
Fork 0

Install MongoDB on mizuki

This commit is contained in:
Avery 2025-02-25 12:48:31 +00:00
parent 162856f7fb
commit 3930f32511
Signed by: Avery
GPG key ID: B684FD451B692E04

View file

@ -1,15 +1,18 @@
{ config, lib, pkgs, ... }: {
{ lib, pkgs, ... }: {
environment.shells = with pkgs; [ zsh ];
nix.settings.experimental-features = [ "nix-command" "flakes" ];
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
nixpkgs.config.allowUnfree = true;
programs.zsh.enable = true;
security.sudo.enable = true;
services = { mongodb.enable = true; };
users = {
defaultUserShell = pkgs.zsh;
users.avery.extraGroups = [ "wheel" ];