From 3930f32511a1913e619e2249e863901568ebdc9d Mon Sep 17 00:00:00 2001 From: Avery Date: Tue, 25 Feb 2025 12:48:31 +0000 Subject: [PATCH] Install MongoDB on mizuki --- hosts/mizuki/nixos.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/hosts/mizuki/nixos.nix b/hosts/mizuki/nixos.nix index 81c8012..d7bb1f1 100644 --- a/hosts/mizuki/nixos.nix +++ b/hosts/mizuki/nixos.nix @@ -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" ];