remove custom hosts on laptop, add dmm service on server

This commit is contained in:
2026-06-11 16:37:45 +02:00
parent 64c6ca6030
commit e80dbffebf
3 changed files with 17 additions and 12 deletions

View File

@ -6,7 +6,7 @@
# By: tomoron <tomoron@student.42angouleme.fr> +#+ +:+ +#+ # # By: tomoron <tomoron@student.42angouleme.fr> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ # # +#+#+#+#+#+ +#+ #
# Created: 2025/02/09 22:01:56 by tomoron #+# #+# # # Created: 2025/02/09 22:01:56 by tomoron #+# #+# #
# Updated: 2026/06/10 21:30:25 by tomoron ### ########.fr # # Updated: 2026/06/11 16:36:57 by tomoron ### ########.fr #
# # # #
# **************************************************************************** # # **************************************************************************** #
@ -14,7 +14,6 @@
{ {
home.packages = with pkgs;[ home.packages = with pkgs;[
inputs.dockermcmgr.packages.${system}.default
lrzip lrzip
pigz pigz
htop htop

View File

@ -6,7 +6,7 @@
# By: tomoron <tomoron@student.42angouleme.fr> +#+ +:+ +#+ # # By: tomoron <tomoron@student.42angouleme.fr> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ # # +#+#+#+#+#+ +#+ #
# Created: 2025/09/06 00:56:57 by tomoron #+# #+# # # Created: 2025/09/06 00:56:57 by tomoron #+# #+# #
# Updated: 2026/06/09 17:10:44 by tomoron ### ########.fr # # Updated: 2026/06/11 16:35:54 by tomoron ### ########.fr #
# # # #
# **************************************************************************** # # **************************************************************************** #
@ -167,11 +167,4 @@
}; };
programs.corectrl.enable = true; programs.corectrl.enable = true;
networking.extraHosts = ''
127.0.0.1 mc.tmoron.fr
127.0.0.1 hello.mc.tmoron.fr
127.0.0.1 potato.mc.tmoron.fr
'';
} }

View File

@ -6,11 +6,11 @@
# By: tomoron <tomoron@student.42angouleme.fr> +#+ +:+ +#+ # # By: tomoron <tomoron@student.42angouleme.fr> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ # # +#+#+#+#+#+ +#+ #
# Created: 2025/09/06 00:57:09 by tomoron #+# #+# # # Created: 2025/09/06 00:57:09 by tomoron #+# #+# #
# Updated: 2026/06/07 03:12:17 by tomoron ### ########.fr # # Updated: 2026/06/11 16:37:35 by tomoron ### ########.fr #
# # # #
# **************************************************************************** # # **************************************************************************** #
{ config, pkgs, ... }: { config, pkgs, inputs, ... }:
let let
ports = [ ports = [
@ -110,6 +110,7 @@ in
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
zfs zfs
screen #can be user (and global) screen #can be user (and global)
(inputs.dockermcmgr.packages.${pkgs.stdenv.hostPlatform.system}.default)
]; ];
networking = { networking = {
@ -142,4 +143,16 @@ in
enable = true; enable = true;
boot = true; boot = true;
}; };
systemd.services.dockermcmgr-server = {
enable = true;
wantedBy = ["multi-user.target"];
restartIfChanged = true;
serviceConfig = {
ExecStart = "${inputs.dockermcmgr.packages.${pkgs.stdenv.hostPlatform.system}.default}/bin/dmm serverMode";
User = "tom";
Group= "users";
};
};
} }