nixos-config/machines/kholinar/default.nix
Charlotte Van Petegem d4dba203e3
All checks were successful
Cachix / build (elendel) (push) Successful in 1m30s
Cachix / build (kholinar) (push) Successful in 2m11s
Cachix / build (marabethia) (push) Successful in 1m34s
treewide: cleanup some unused modules/programs
2025-01-13 09:45:43 +01:00

51 lines
1.1 KiB
Nix

{ pkgs, lib, config, ... }:
{
imports = [ ./hardware.nix ];
networking.hostId = "3cc1a4b2";
time.timeZone = "Europe/Brussels";
# Machine-specific module settings
chvp = {
stateVersion = "20.09";
base = {
bluetooth.enable = true;
network.mobile = {
enable = true;
wireless-interface = "wlp0s20f3";
wired-interfaces = {
"enp0s31f6" = { };
};
};
zfs = {
enable = true;
encrypted = true;
backups = [
{
path = "rpool/safe/data";
remotePath = "zdata/recv/kholinar/safe/data";
fast = true;
location = "elendel";
}
];
rootDataset = "rpool/local/root";
rootPool = "rpool";
};
};
development = {
enable = true;
android.enable = true;
};
games.enable = true;
graphical.enable = true;
programs = {
calibre.enable = true;
eid.enable = true;
element.enable = true;
hledger.enable = true;
torrents.enable = true;
};
};
}