nixos-config/machines/kharbranth/default.nix
Charlotte Van Petegem 0df4d5654f
Finish modularising config
There are still some things I want to change, but at least there aren't two systems now.
2021-06-27 00:32:31 +02:00

30 lines
625 B
Nix

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