blob: cdb3036005d0682e88d78bb9b69576117ec526f8 (
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;
};
}
|