added more stuff
This commit is contained in:
parent
369cfc5d52
commit
6eacd76d61
13 changed files with 237 additions and 60 deletions
|
|
@ -32,6 +32,10 @@ in
|
|||
kubernetes-tools.enable = true;
|
||||
networking.hostName = myhostname;
|
||||
|
||||
security.pki.certificateFiles = [
|
||||
../../root_ca.crt
|
||||
];
|
||||
|
||||
stylix = {
|
||||
enable = true;
|
||||
base16Scheme = "${pkgs.base16-schemes}/share/themes/catppuccin-${theme}.yaml";
|
||||
|
|
@ -53,8 +57,8 @@ in
|
|||
|
||||
environment.systemPackages = [ pkgs.cifs-utils ];
|
||||
|
||||
fileSystems."/mnt/testweb/inetpub" = {
|
||||
device = "//192.168.0.226/inetpub";
|
||||
fileSystems."/mnt/testweb/C" = {
|
||||
device = "//192.168.0.226/C$";
|
||||
fsType = "cifs";
|
||||
options =
|
||||
let
|
||||
|
|
@ -67,8 +71,22 @@ in
|
|||
];
|
||||
};
|
||||
|
||||
fileSystems."/mnt/testweb/Logs" = {
|
||||
device = "//192.168.0.226/Logs";
|
||||
fileSystems."/mnt/elastic-internal/C" = {
|
||||
device = "//192.168.0.204/C$";
|
||||
fsType = "cifs";
|
||||
options =
|
||||
let
|
||||
automount_opts =
|
||||
"x-systemd.automount,noauto,x-systemd.idle-timeout=60,"
|
||||
+ "x-systemd.device-timeout=5s,x-systemd.mount-timeout=5s";
|
||||
in
|
||||
[
|
||||
"${automount_opts},credentials=${toString config.sops.secrets.build-service.path},vers=3.0"
|
||||
];
|
||||
};
|
||||
|
||||
fileSystems."/mnt/dev-machine2/C" = {
|
||||
device = "//192.168.0.149/C$";
|
||||
fsType = "cifs";
|
||||
options =
|
||||
let
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue