blob: 2fa7bc6b300dd0fcf4892af6966845157dc70e92 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
{ self, unstable, unstable-small, ... } @ inputs:
{
meta = {
nixpkgs = import unstable {
system = "x86_64-linux";
};
};
defaults = { pkgs, ... }: {
environment.systemPackages = with pkgs; [
curl
vim
];
};
cobalt = self.lib.mkColmena {
name = "cobalt";
system = "x86_64-linux";
deployment = {
targetHost = "cobalt.sefidel.com";
targetPort = 22;
targetUser = "root";
};
time.timeZone = "UTC";
};
}
|