marisa: add user bat
Signed-off-by: natto1784 <singh.amneesh1784@gmail.com>
This commit is contained in:
@@ -1,14 +1,21 @@
|
||||
{ config, ... }:
|
||||
{ config, pkgs, ... }:
|
||||
{
|
||||
imports =
|
||||
[
|
||||
./networking.nix
|
||||
./hardware.nix
|
||||
./boot.nix
|
||||
./services.nix
|
||||
./mailserver.nix
|
||||
];
|
||||
imports = [
|
||||
./networking.nix
|
||||
./hardware.nix
|
||||
./boot.nix
|
||||
./services.nix
|
||||
./mailserver.nix
|
||||
];
|
||||
|
||||
time.timeZone = "Asia/Kolkata";
|
||||
|
||||
users.users.bat = {
|
||||
isNormalUser = true;
|
||||
shell = pkgs.zsh;
|
||||
home = "/home/bat";
|
||||
extraGroups = [ "wheel" ];
|
||||
};
|
||||
|
||||
system.stateVersion = "21.11";
|
||||
}
|
||||
|
@@ -16,6 +16,9 @@
|
||||
"masti@${domain}" = {
|
||||
hashedPasswordFile = "/var/secrets/masti@${domain}.key";
|
||||
};
|
||||
"chamar@${domain}" = {
|
||||
hashedPasswordFile = "/var/secrets/chamar@${domain}.key";
|
||||
};
|
||||
};
|
||||
enablePop3 = false;
|
||||
enablePop3Ssl = false;
|
||||
|
@@ -56,7 +56,7 @@ in
|
||||
"f.${domain}" = genericHttpRProxy { addr = "http://${marisa}:8888"; };
|
||||
"radio.${domain}" = genericHttpRProxy { addr = "http://${satori}:8001"; };
|
||||
"git.${domain}" = genericHttpRProxy {
|
||||
addr = "http://${marisa}:5001";
|
||||
addr = "http://${marisa}:5000";
|
||||
conf = "client_max_body_size 64M;";
|
||||
};
|
||||
"nomad.${domain}" = genericHttpRProxy {
|
||||
|
Reference in New Issue
Block a user