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