blob: d9f2cb6c2a6c98cfe0d8d11f23c9510aad4e999e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
{ bild }:
# Dev machine for work and building stuff.
bild.os {
imports = [
./OsBase.nix
./Packages.nix
./Users.nix
./Dev/Configuration.nix
./Dev/Hardware.nix
./Devalloc/Host.nix
];
networking.hostName = "lithium";
networking.domain = "dev.simatime.com";
services.devalloc-host = {
enable = true;
port = 8095;
package = bild.ghc ./Devalloc/Host.hs;
};
}
|