nixos-config/machines/kharbranth/default.nix
2020-12-05 13:44:29 +01:00

38 lines
749 B
Nix

{ config, pkgs, ... }:
{
imports = [
./hardware.nix
../../profiles/graphical.nix
];
networking = {
hostId = "e718389d";
hostName = "kharbranth";
};
time.timeZone = "Europe/Brussels";
# Machine-specific application settings
chvp = {
stateVersion = "20.09";
graphical = true;
bluetooth.enable = true;
docker.enable = true;
eid.enable = true;
git.email = "charlotte.vanpetegem@ugent.be";
nix.enableUnfree = true;
zfs = {
enable = true;
encrypted = true;
backups = [
{
path = "rpool/safe/data";
remotePath = "zdata/recv/kharbranth/safe/data";
fast = true;
location = "lasting-integrity";
}
];
};
};
}