rename nodes and add runner for gitea instance
This commit is contained in:
18
hosts/thea/shares.nix
Normal file
18
hosts/thea/shares.nix
Normal file
@@ -0,0 +1,18 @@
|
||||
{...}: {
|
||||
boot.supportedFilesystems = [ "fuse.sshfs" ];
|
||||
programs.fuse.userAllowOther = true;
|
||||
|
||||
fileSystems = {
|
||||
"/mnt/shares/data" = {
|
||||
device = "shobu@10.0.0.4:/mnt/data/";
|
||||
fsType = "fuse.sshfs";
|
||||
options = [
|
||||
"debug"
|
||||
"allow_other"
|
||||
"nodev"
|
||||
"nosuid"
|
||||
"IdentityFile=/home/n100/.ssh/id_ed25519"
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user