Compare commits

...

4 Commits

Author SHA1 Message Date
e432f33c9a secrets template 2024-05-19 10:54:41 +02:00
2b1870743f gitignore 2024-05-04 12:20:46 +02:00
0983ba366c oops 2024-05-04 12:19:10 +02:00
82c9d361a0 zelda 2024-05-04 12:17:17 +02:00
4 changed files with 10 additions and 2 deletions

View File

@ -498,6 +498,10 @@ in
hostname = "rachel.cafe";
user = "deppy";
};
zelda = {
hostname = "zelda.cse.chalmers.se";
user = "dhack";
};
};
};
};

2
shared/.gitignore vendored
View File

@ -1 +1 @@
secret.nix
secrets.nix

View File

@ -16,7 +16,7 @@
};
fileSystems."/mnt/eta" =
let secrets = import secrets.nix;
let secrets = import ./secrets.nix;
in {
device = "//192.168.30.33/users";
fsType = "cifs";

4
shared/secrets.nix Normal file
View File

@ -0,0 +1,4 @@
{
etaUser = "user";
etaPass = "pass";
}