nixos-config/machines/kharbranth/default.nix
Charlotte Van Petegem 44ed9e9ac3
Remove gomuks
2021-04-01 16:19:11 +02:00

41 lines
838 B
Nix

{ config, pkgs, ... }:
{
imports = [
./hardware.nix
../../profiles/graphical.nix
];
boot.kernelPackages = pkgs.linuxPackages_latest;
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";
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";
};
zotero.enable = true;
};
}