blob: 2cfe61abe9fe103e5e8a6fd900207e61db6c1e03 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{ nixpkgs ? import ../Bild.nix { } }:
with nixpkgs;
bild.os {
imports = [
../OsBase.nix
../Packages.nix
../Users.nix
./Beryllium/Configuration.nix
./Beryllium/Hardware.nix
./Vpn.nix
];
networking.hostName = "beryllium";
networking.domain = "beryl.simatime.com";
}
|