From 26540097322bdd716363ffa27f41107929cd11bc Mon Sep 17 00:00:00 2001 From: fortuneteller2k Date: Sat, 18 Nov 2023 06:04:08 +0800 Subject: [PATCH] hosts/mistral: user config --- hosts/mistral/configuration.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/hosts/mistral/configuration.nix b/hosts/mistral/configuration.nix index c7ee590..ef4565d 100644 --- a/hosts/mistral/configuration.nix +++ b/hosts/mistral/configuration.nix @@ -57,6 +57,8 @@ nixpkgs.overlays = lib.mkOverride 10 [ inputs.nix-minecraft.overlay ]; + programs.fish.enable = true; + services.minecraft-servers = { enable = true; eula = true; @@ -115,4 +117,11 @@ }; }; }; + + users.users.moni = { + isNormalUser = true; + home = "/home/moni"; + shell = pkgs.fish; + extraGroups = [ "wheel" ]; + }; }